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