update components

This commit is contained in:
Luke Pulverenti 2015-08-31 15:00:39 -04:00
parent 3449729ff4
commit 68f6551ee5
15 changed files with 407 additions and 496 deletions

View file

@ -66,9 +66,9 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
/**
* Returns false if the element is required and not checked, and true otherwise.
* @return {Boolean} true if `required` is false, or if `required` and `checked` are both true.
* @return {boolean} true if `required` is false, or if `required` and `checked` are both true.
*/
_getValidity: function() {
_getValidity: function(_value) {
return this.disabled || !this.required || (this.required && this.checked);
},