1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

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

@ -1,6 +1,6 @@
{
"name": "iron-checked-element-behavior",
"version": "1.0.1",
"version": "1.0.2",
"description": "Implements an element that has a checked attribute and can be added to a form",
"authors": "The Polymer Authors",
"keywords": [
@ -33,11 +33,11 @@
"web-component-tester": "*",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"_release": "1.0.1",
"_release": "1.0.2",
"_resolution": {
"type": "version",
"tag": "v1.0.1",
"commit": "c680a5f6a61bd1fb52a691d7ee763f679414615e"
"tag": "v1.0.2",
"commit": "975b9f22ebd89ef457491fcc44cb86b660fc42cd"
},
"_source": "git://github.com/PolymerElements/iron-checked-element-behavior.git",
"_target": "^1.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "iron-checked-element-behavior",
"version": "1.0.1",
"version": "1.0.2",
"description": "Implements an element that has a checked attribute and can be added to a form",
"authors": "The Polymer Authors",
"keywords": [

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);
},