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

update shared components

This commit is contained in:
Luke Pulverenti 2016-05-17 13:44:17 -04:00
parent 30db5a009c
commit 489dc97aab
33 changed files with 368 additions and 212 deletions

View file

@ -196,8 +196,12 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
newItem.id = 'item999';
s2.addEventListener('iron-items-changed', function() {
s2.addEventListener('iron-items-changed', function(event) {
changeCount++;
var mutation = event.detail;
assert.notEqual(mutation, undefined);
assert.notEqual(mutation.addedNodes, undefined);
assert.notEqual(mutation.removedNodes, undefined);
});
Polymer.dom(s2).appendChild(newItem);