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