OLD | NEW |
1 | 1 /** |
2 | |
3 /** | |
4 * `Polymer.NeonAnimationRunnerBehavior` adds a method to run animations. | 2 * `Polymer.NeonAnimationRunnerBehavior` adds a method to run animations. |
5 * | 3 * |
6 * @polymerBehavior Polymer.NeonAnimationRunnerBehavior | 4 * @polymerBehavior Polymer.NeonAnimationRunnerBehavior |
7 */ | 5 */ |
8 Polymer.NeonAnimationRunnerBehaviorImpl = { | 6 Polymer.NeonAnimationRunnerBehaviorImpl = { |
9 | 7 |
10 properties: { | 8 properties: { |
11 | 9 |
12 _animationMeta: { | 10 _animationMeta: { |
13 type: Object, | 11 type: Object, |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 if (this._player) { | 94 if (this._player) { |
97 this._player.cancel(); | 95 this._player.cancel(); |
98 } | 96 } |
99 } | 97 } |
100 }; | 98 }; |
101 | 99 |
102 /** @polymerBehavior Polymer.NeonAnimationRunnerBehavior */ | 100 /** @polymerBehavior Polymer.NeonAnimationRunnerBehavior */ |
103 Polymer.NeonAnimationRunnerBehavior = [ | 101 Polymer.NeonAnimationRunnerBehavior = [ |
104 Polymer.NeonAnimatableBehavior, | 102 Polymer.NeonAnimatableBehavior, |
105 Polymer.NeonAnimationRunnerBehaviorImpl | 103 Polymer.NeonAnimationRunnerBehaviorImpl |
106 ]; | 104 ]; |
OLD | NEW |