| Index: third_party/polymer/v1_0/components/paper-input/paper-input-addon-behavior.html
|
| diff --git a/third_party/polymer/v1_0/components/paper-input/paper-input-addon-behavior.html b/third_party/polymer/v1_0/components/paper-input/paper-input-addon-behavior.html
|
| index dd17a78a06b3101bb4ad01a53301b637e8491275..0b021a5dd4a319f4b6fece8d4d53492bf7beb5c0 100644
|
| --- a/third_party/polymer/v1_0/components/paper-input/paper-input-addon-behavior.html
|
| +++ b/third_party/polymer/v1_0/components/paper-input/paper-input-addon-behavior.html
|
| @@ -30,10 +30,14 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
| /**
|
| * The function called by `<paper-input-container>` when the input value or validity changes.
|
| - * @param {Object} state All properties are optional.
|
| - * @param {Node} state.inputElement The input element.
|
| - * @param {String} state.value The input value.
|
| - * @param {Boolean} state.invalid True if the input value is invalid.
|
| + * @param {{
|
| + * inputElement: (Node|undefined),
|
| + * value: (string|undefined),
|
| + * invalid: (boolean|undefined)
|
| + * }} state All properties are optional -
|
| + * inputElement: The input element.
|
| + * value: The input value.
|
| + * invalid: True if the input value is invalid.
|
| */
|
| update: function(state) {
|
| }
|
|
|