| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |