| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Use `Polymer.PaperInputAddonBehavior` to implement an add-on for `<paper-in
put-container>`. A | 2 * Use `Polymer.PaperInputAddonBehavior` to implement an add-on for `<paper-in
put-container>`. A |
| 3 * add-on appears below the input, and may display information based on the in
put value and | 3 * add-on appears below the input, and may display information based on the in
put value and |
| 4 * validity such as a character counter or an error message. | 4 * validity such as a character counter or an error message. |
| 5 * @polymerBehavior | 5 * @polymerBehavior |
| 6 */ | 6 */ |
| 7 Polymer.PaperInputAddonBehavior = { | 7 Polymer.PaperInputAddonBehavior = { |
| 8 | 8 |
| 9 hostAttributes: { | 9 hostAttributes: { |
| 10 'add-on': '' | 10 'add-on': '' |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * value: (string|undefined), | 21 * value: (string|undefined), |
| 22 * invalid: boolean | 22 * invalid: boolean |
| 23 * }} state - | 23 * }} state - |
| 24 * inputElement: The input element. | 24 * inputElement: The input element. |
| 25 * value: The input value. | 25 * value: The input value. |
| 26 * invalid: True if the input value is invalid. | 26 * invalid: True if the input value is invalid. |
| 27 */ | 27 */ |
| 28 update: function(state) { | 28 update: function(state) { |
| 29 } | 29 } |
| 30 | 30 |
| 31 }; | 31 }; |
| OLD | NEW |