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

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

Issue 1351623008: MD Settings: Languages model for language pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SingletonPrefs
Patch Set: Created 5 years, 3 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
3 /**
2 * Use `Polymer.NeonSharedElementAnimatableBehavior` to implement elements con taining shared element 4 * Use `Polymer.NeonSharedElementAnimatableBehavior` to implement elements con taining shared element
3 * animations. 5 * animations.
4 * @polymerBehavior Polymer.NeonSharedElementAnimatableBehavior 6 * @polymerBehavior Polymer.NeonSharedElementAnimatableBehavior
5 */ 7 */
6 Polymer.NeonSharedElementAnimatableBehaviorImpl = { 8 Polymer.NeonSharedElementAnimatableBehaviorImpl = {
7 9
8 properties: { 10 properties: {
9 11
10 /** 12 /**
11 * A map of shared element id to node. 13 * A map of shared element id to node.
12 */ 14 */
13 sharedElements: { 15 sharedElements: {
14 type: Object, 16 type: Object,
15 value: {} 17 value: {}
16 } 18 }
17 19
18 } 20 }
19 21
20 }; 22 };
21 23
22 /** @polymerBehavior Polymer.NeonSharedElementAnimatableBehavior */ 24 /** @polymerBehavior Polymer.NeonSharedElementAnimatableBehavior */
23 Polymer.NeonSharedElementAnimatableBehavior = [ 25 Polymer.NeonSharedElementAnimatableBehavior = [
24 Polymer.NeonAnimatableBehavior, 26 Polymer.NeonAnimatableBehavior,
25 Polymer.NeonSharedElementAnimatableBehaviorImpl 27 Polymer.NeonSharedElementAnimatableBehaviorImpl
26 ]; 28 ];
29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698