Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Side by Side Diff: third_party/polymer/v0_8/components-chromium/neon-animation/neon-animatable-behavior-extracted.js

Issue 1162963002: Revert "Rename polymer and cr_elements v0_8 to v1_0" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698