| OLD | NEW |
| 1 /** | 1 |
| 2 |
| 3 /** |
| 2 * Use `Polymer.NeonSharedElementAnimationBehavior` to implement shared elemen
t animations. | 4 * Use `Polymer.NeonSharedElementAnimationBehavior` to implement shared elemen
t animations. |
| 3 * @polymerBehavior Polymer.NeonSharedElementAnimationBehavior | 5 * @polymerBehavior Polymer.NeonSharedElementAnimationBehavior |
| 4 */ | 6 */ |
| 5 Polymer.NeonSharedElementAnimationBehaviorImpl = { | 7 Polymer.NeonSharedElementAnimationBehaviorImpl = { |
| 6 | 8 |
| 7 properties: { | 9 properties: { |
| 8 | 10 |
| 9 /** | 11 /** |
| 10 * Cached copy of shared elements. | 12 * Cached copy of shared elements. |
| 11 */ | 13 */ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 }; | 47 }; |
| 46 return this.sharedElements; | 48 return this.sharedElements; |
| 47 } | 49 } |
| 48 | 50 |
| 49 }; | 51 }; |
| 50 | 52 |
| 51 /** @polymerBehavior Polymer.NeonSharedElementAnimationBehavior */ | 53 /** @polymerBehavior Polymer.NeonSharedElementAnimationBehavior */ |
| 52 Polymer.NeonSharedElementAnimationBehavior = [ | 54 Polymer.NeonSharedElementAnimationBehavior = [ |
| 53 Polymer.NeonAnimationBehavior, | 55 Polymer.NeonAnimationBehavior, |
| 54 Polymer.NeonSharedElementAnimationBehaviorImpl | 56 Polymer.NeonSharedElementAnimationBehaviorImpl |
| 55 ]; | 57 ]; |
| 58 |
| OLD | NEW |