| OLD | NEW |
| 1 Polymer({ | 1 |
| 2 Polymer({ |
| 2 is: 'paper-input-container', | 3 is: 'paper-input-container', |
| 3 | 4 |
| 4 properties: { | 5 properties: { |
| 5 /** | 6 /** |
| 6 * Set to true to disable the floating label. The label disappears when th
e input value is | 7 * Set to true to disable the floating label. The label disappears when th
e input value is |
| 7 * not null. | 8 * not null. |
| 8 */ | 9 */ |
| 9 noLabelFloat: { | 10 noLabelFloat: { |
| 10 type: Boolean, | 11 type: Boolean, |
| 11 value: false | 12 value: false |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 | 271 |
| 271 _computeAddOnContentClass: function(focused, invalid) { | 272 _computeAddOnContentClass: function(focused, invalid) { |
| 272 var cls = 'add-on-content'; | 273 var cls = 'add-on-content'; |
| 273 if (invalid) { | 274 if (invalid) { |
| 274 cls += ' is-invalid'; | 275 cls += ' is-invalid'; |
| 275 } else if (focused) { | 276 } else if (focused) { |
| 276 cls += ' is-highlighted' | 277 cls += ' is-highlighted' |
| 277 } | 278 } |
| 278 return cls; | 279 return cls; |
| 279 } | 280 } |
| 280 }); | 281 }); |
| OLD | NEW |