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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/neon-animation/animations/reverse-ripple-animation-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 Polymer({ 1
2 Polymer({
2 is: 'reverse-ripple-animation', 3 is: 'reverse-ripple-animation',
3 4
4 behaviors: [ 5 behaviors: [
5 Polymer.NeonSharedElementAnimationBehavior 6 Polymer.NeonSharedElementAnimationBehavior
6 ], 7 ],
7 8
8 configure: function(config) { 9 configure: function(config) {
9 var shared = this.findSharedElements(config); 10 var shared = this.findSharedElements(config);
10 if (!shared) { 11 if (!shared) {
11 return null; 12 return null;
(...skipping 26 matching lines...) Expand all
38 ], this.timingFromConfig(config)); 39 ], this.timingFromConfig(config));
39 return this._effect; 40 return this._effect;
40 }, 41 },
41 42
42 complete: function() { 43 complete: function() {
43 if (this.sharedElements) { 44 if (this.sharedElements) {
44 this.setPrefixedProperty(this.sharedElements.from, 'transformOrigin', '' ); 45 this.setPrefixedProperty(this.sharedElements.from, 'transformOrigin', '' );
45 this.sharedElements.from.style.borderRadius = ''; 46 this.sharedElements.from.style.borderRadius = '';
46 } 47 }
47 } 48 }
48 }); 49 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698