| Index: third_party/polymer/v1_0/components-chromium/iron-validatable-behavior/iron-validatable-behavior-extracted.js
|
| diff --git a/third_party/polymer/v1_0/components-chromium/iron-validatable-behavior/iron-validatable-behavior-extracted.js b/third_party/polymer/v1_0/components-chromium/iron-validatable-behavior/iron-validatable-behavior-extracted.js
|
| index e39fd9e59c4e50b02a0e423fdb56b110b5eee88c..0e294ff17127880821c91b040adf99ad63d4eb5f 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/iron-validatable-behavior/iron-validatable-behavior-extracted.js
|
| +++ b/third_party/polymer/v1_0/components-chromium/iron-validatable-behavior/iron-validatable-behavior-extracted.js
|
| @@ -34,6 +34,7 @@
|
| * True if the last call to `validate` is invalid.
|
| */
|
| invalid: {
|
| + notify: true,
|
| reflectToAttribute: true,
|
| type: Boolean,
|
| value: false
|
| @@ -66,7 +67,7 @@
|
| },
|
|
|
| /**
|
| - * @return {Boolean} True if the validator `validator` exists.
|
| + * @return {boolean} True if the validator `validator` exists.
|
| */
|
| hasValidator: function() {
|
| return this._validator != null;
|
| @@ -74,7 +75,7 @@
|
|
|
| /**
|
| * @param {Object} values Passed to the validator's `validate()` function.
|
| - * @return {Boolean} True if `values` is valid.
|
| + * @return {boolean} True if `values` is valid.
|
| */
|
| validate: function(values) {
|
| var valid = this._validator && this._validator.validate(values);
|
|
|