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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-spinner/paper-spinner-extracted.js

Issue 1287713002: [MD settings] merge polymer 1.0.11; hack for settings checkbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 Polymer({
2 2
3 Polymer({
4
5 is: 'paper-spinner', 3 is: 'paper-spinner',
6 4
7 listeners: { 5 listeners: {
8 'animationend': 'reset', 6 'animationend': 'reset',
9 'webkitAnimationEnd': 'reset' 7 'webkitAnimationEnd': 'reset'
10 }, 8 },
11 9
12 properties: { 10 properties: {
13 11
14 /** 12 /**
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 } else { 85 } else {
88 this.removeAttribute(attr); 86 this.removeAttribute(attr);
89 } 87 }
90 }, 88 },
91 89
92 reset: function() { 90 reset: function() {
93 this.active = false; 91 this.active = false;
94 this._coolingDown = false; 92 this._coolingDown = false;
95 } 93 }
96 94
97 }); 95 });
98
99
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698