| OLD | NEW |
| 1 | 1 |
| 2 | 2 |
| 3 /** | 3 /** |
| 4 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-con
tainer>`. This | 4 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-con
tainer>`. This |
| 5 * behavior is implemented by `<paper-input>`. It exposes a number of properti
es from | 5 * behavior is implemented by `<paper-input>`. It exposes a number of properti
es from |
| 6 * `<paper-input-container>` and `<input is="iron-input">` and they should be
bound in your | 6 * `<paper-input-container>` and `<input is="iron-input">` and they should be
bound in your |
| 7 * template. | 7 * template. |
| 8 * | 8 * |
| 9 * The input element can be accessed by the `inputElement` property if you nee
d to access | 9 * The input element can be accessed by the `inputElement` property if you nee
d to access |
| 10 * properties or methods that are not exposed. | 10 * properties or methods that are not exposed. |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 labelledBy = label.id; | 272 labelledBy = label.id; |
| 273 } else { | 273 } else { |
| 274 labelledBy = 'paper-input-label-' + new Date().getUTCMilliseconds(); | 274 labelledBy = 'paper-input-label-' + new Date().getUTCMilliseconds(); |
| 275 label.id = labelledBy; | 275 label.id = labelledBy; |
| 276 } | 276 } |
| 277 this._ariaLabelledBy = labelledBy; | 277 this._ariaLabelledBy = labelledBy; |
| 278 } | 278 } |
| 279 | 279 |
| 280 }; | 280 }; |
| 281 | 281 |
| OLD | NEW |