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

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

Issue 1401633002: Update Polymer from 1.1.4 -> 1.1.5 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dzhioev@ review Created 5 years, 2 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 }, 87 },
89 88
90 _disabledChanged: function(disabled) { 89 _disabledChanged: function(disabled) {
91 this.setAttribute('aria-disabled', disabled ? 'true' : 'false'); 90 this.setAttribute('aria-disabled', disabled ? 'true' : 'false');
92 }, 91 },
93 92
94 _hideSecondaryProgress: function(secondaryRatio) { 93 _hideSecondaryProgress: function(secondaryRatio) {
95 return secondaryRatio === 0; 94 return secondaryRatio === 0;
96 } 95 }
97 96
98 }); 97 });
99
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698