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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-spinner/paper-spinner-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 2
3 Polymer({
4
3 is: 'paper-spinner', 5 is: 'paper-spinner',
4 6
5 listeners: { 7 listeners: {
6 'animationend': 'reset', 8 'animationend': 'reset',
7 'webkitAnimationEnd': 'reset' 9 'webkitAnimationEnd': 'reset'
8 }, 10 },
9 11
10 properties: { 12 properties: {
11 13
12 /** 14 /**
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 } else { 87 } else {
86 this.removeAttribute(attr); 88 this.removeAttribute(attr);
87 } 89 }
88 }, 90 },
89 91
90 reset: function() { 92 reset: function() {
91 this.active = false; 93 this.active = false;
92 this._coolingDown = false; 94 this._coolingDown = false;
93 } 95 }
94 96
95 }); 97 });
98
99
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698