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 2016-03-18 21:40:03 -04:00
parent 4f69bbfb13
commit 36d7dc70f3
7 changed files with 98 additions and 51 deletions

View file

@ -1345,7 +1345,11 @@ get localTarget() {
return this.event.target;
},
get path() {
return this.event.path;
var path = this.event.path;
if (!Array.isArray(path)) {
path = Array.prototype.slice.call(path);
}
return path;
}
};
} else {