| OLD | NEW |
| 1 | 1 |
| 2 | 2 |
| 3 /** | 3 /** |
| 4 * `Polymer.NeonAnimatableBehavior` is implemented by elements containing anim
ations for use with | 4 * `Polymer.NeonAnimatableBehavior` is implemented by elements containing anim
ations for use with |
| 5 * elements implementing `Polymer.NeonAnimationRunnerBehavior`. | 5 * elements implementing `Polymer.NeonAnimationRunnerBehavior`. |
| 6 * @polymerBehavior | 6 * @polymerBehavior |
| 7 */ | 7 */ |
| 8 Polymer.NeonAnimatableBehavior = { | 8 Polymer.NeonAnimatableBehavior = { |
| 9 | 9 |
| 10 properties: { | 10 properties: { |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 this._getAnimationConfigRecursive(type, map, allConfigs); | 134 this._getAnimationConfigRecursive(type, map, allConfigs); |
| 135 // append the configurations saved in the map to the array | 135 // append the configurations saved in the map to the array |
| 136 for (var key in map) { | 136 for (var key in map) { |
| 137 allConfigs.push(map[key]); | 137 allConfigs.push(map[key]); |
| 138 } | 138 } |
| 139 return allConfigs; | 139 return allConfigs; |
| 140 } | 140 } |
| 141 | 141 |
| 142 }; | 142 }; |
| 143 | 143 |
| OLD | NEW |