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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-progress/paper-progress-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 Polymer({
3 2
4 is: 'paper-progress', 3 is: 'paper-progress',
5 4
6 behaviors: [ 5 behaviors: [
7 Polymer.IronRangeBehavior 6 Polymer.IronRangeBehavior
8 ], 7 ],
9 8
10 properties: { 9 properties: {
11 10
12 /** 11 /**
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 61
63 _secondaryRatioChanged: function(secondaryRatio) { 62 _secondaryRatioChanged: function(secondaryRatio) {
64 this._transformProgress(this.$.secondaryProgress, secondaryRatio); 63 this._transformProgress(this.$.secondaryProgress, secondaryRatio);
65 }, 64 },
66 65
67 _secondaryProgressChanged: function() { 66 _secondaryProgressChanged: function() {
68 this.secondaryProgress = this._clampValue(this.secondaryProgress); 67 this.secondaryProgress = this._clampValue(this.secondaryProgress);
69 this._setSecondaryRatio(this._calcRatio(this.secondaryProgress) * 100); 68 this._setSecondaryRatio(this._calcRatio(this.secondaryProgress) * 100);
70 } 69 }
71 70
72 }); 71 });
73
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698