| OLD | NEW |
| 1 | 1 /** |
| 2 | |
| 3 /** | |
| 4 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-con
tainer>`. This | 2 * 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 | 3 * 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 | 4 * `<paper-input-container>` and `<input is="iron-input">` and they should be
bound in your |
| 7 * template. | 5 * template. |
| 8 * | 6 * |
| 9 * The input element can be accessed by the `inputElement` property if you nee
d to access | 7 * The input element can be accessed by the `inputElement` property if you nee
d to access |
| 10 * properties or methods that are not exposed. | 8 * properties or methods that are not exposed. |
| 11 * @polymerBehavior Polymer.PaperInputBehavior | 9 * @polymerBehavior Polymer.PaperInputBehavior |
| 12 */ | 10 */ |
| 13 Polymer.PaperInputBehaviorImpl = { | 11 Polymer.PaperInputBehaviorImpl = { |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 node: this, | 411 node: this, |
| 414 bubbles: event.bubbles, | 412 bubbles: event.bubbles, |
| 415 cancelable: event.cancelable | 413 cancelable: event.cancelable |
| 416 }); | 414 }); |
| 417 } | 415 } |
| 418 } | 416 } |
| 419 | 417 |
| 420 }; | 418 }; |
| 421 | 419 |
| 422 /** @polymerBehavior */ | 420 /** @polymerBehavior */ |
| 423 Polymer.PaperInputBehavior = [Polymer.IronControlState, Polymer.PaperInputBeha
viorImpl]; | 421 Polymer.PaperInputBehavior = [Polymer.IronControlState, Polymer.PaperInputBeha
viorImpl]; |
| 424 | |
| OLD | NEW |