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-07-07 17:31:40 -04:00
parent 618533f773
commit f8b530020b
16 changed files with 229 additions and 79 deletions

View file

@ -21,8 +21,10 @@ define(function () {
var link = document.createElement('link');
link.rel = 'import';
if (url.toLowerCase().indexOf('bower_') == -1) {
url = url + "?" + config.urlArgs;
if (config.urlArgs) {
if (url.toLowerCase().indexOf('bower_') == -1 || url.toLowerCase().indexOf('emby-webcomponents') != -1) {
url = url + config.urlArgs(cssId, url);
}
}
link.onload = load;