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