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

update polymer

This commit is contained in:
Luke Pulverenti 2015-10-05 22:50:20 -04:00
parent d2bb0d6805
commit d96a2b7946
28 changed files with 109 additions and 118 deletions

View file

@ -1,6 +1,6 @@
{
"name": "iron-selector",
"version": "1.0.5",
"version": "1.0.6",
"description": "Manages a set of elements that can be selected",
"private": true,
"license": "http://polymer.github.io/LICENSE.txt",
@ -32,11 +32,11 @@
"web-component-tester": "*",
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0"
},
"_release": "1.0.5",
"_release": "1.0.6",
"_resolution": {
"type": "version",
"tag": "v1.0.5",
"commit": "396ef93a5d3467810cec0328c53f09037d6ee8e1"
"tag": "v1.0.6",
"commit": "08fa18c70b79abdee8a02486223ab9a4f0acc72c"
},
"_source": "git://github.com/PolymerElements/iron-selector.git",
"_target": "^1.0.0",

View file

@ -1,6 +1,6 @@
{
"name": "iron-selector",
"version": "1.0.5",
"version": "1.0.6",
"description": "Manages a set of elements that can be selected",
"private": true,
"license": "http://polymer.github.io/LICENSE.txt",

View file

@ -111,7 +111,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
* @type {object}
* @default {template: 1}
*/
excludedLocalNames: {
_excludedLocalNames: {
type: Object,
value: function() {
return {
@ -223,7 +223,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
},
_filterItem: function(node) {
return !this.excludedLocalNames[node.localName];
return !this._excludedLocalNames[node.localName];
},
_valueToItem: function(value) {

View file

@ -57,22 +57,22 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
test2 = fixture('test2');
});
test('default `excludedLocalNames`', function() {
assert.isTrue('template' in test1.excludedLocalNames);
assert.isTrue('template' in test2.excludedLocalNames);
test('default `_excludedLocalNames`', function() {
assert.isTrue('template' in test1._excludedLocalNames);
assert.isTrue('template' in test2._excludedLocalNames);
});
test('custom `excludedLocalNames`', function() {
test1.excludedLocalNames.foo = 1;
test('custom `_excludedLocalNames`', function() {
test1._excludedLocalNames.foo = 1;
assert.isTrue('foo' in test1.excludedLocalNames);
assert.isFalse('foo' in test2.excludedLocalNames);
assert.isTrue('foo' in test1._excludedLocalNames);
assert.isFalse('foo' in test2._excludedLocalNames);
});
test('items', function() {
test1.excludedLocalNames.span = 1;
test2.excludedLocalNames.div = 1;
test1._excludedLocalNames.span = 1;
test2._excludedLocalNames.div = 1;
var NOT_FOUND = -1;
var items1 = test1.items.map(function(el) { return el.localName; });