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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-progress/paper-progress-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 3
3 is: 'paper-progress', 4 is: 'paper-progress',
4 5
5 behaviors: [ 6 behaviors: [
6 Polymer.IronRangeBehavior 7 Polymer.IronRangeBehavior
7 ], 8 ],
8 9
9 properties: { 10 properties: {
10 11
11 /** 12 /**
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 }, 88 },
88 89
89 _disabledChanged: function(disabled) { 90 _disabledChanged: function(disabled) {
90 this.$.progressContainer.setAttribute('aria-disabled', disabled ? 'true' : 'false'); 91 this.$.progressContainer.setAttribute('aria-disabled', disabled ? 'true' : 'false');
91 }, 92 },
92 93
93 _hideSecondaryProgress: function(secondaryRatio) { 94 _hideSecondaryProgress: function(secondaryRatio) {
94 return secondaryRatio === 0; 95 return secondaryRatio === 0;
95 } 96 }
96 97
97 }); 98 });
99
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698