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-15 23:14:29 -04:00
parent c389d502e0
commit a4431538c7
3 changed files with 15 additions and 9 deletions

View file

@ -16,12 +16,12 @@
}, },
"devDependencies": {}, "devDependencies": {},
"ignore": [], "ignore": [],
"version": "1.1.61", "version": "1.1.62",
"_release": "1.1.61", "_release": "1.1.62",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "1.1.61", "tag": "1.1.62",
"commit": "8565fb2a1cb83dc5528e8e79f8f9bc9ef0b7cb7d" "commit": "47fb2042a7e5b8ea4471c67fc3e9922e29e23f07"
}, },
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git", "_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "~1.1.5", "_target": "~1.1.5",

View file

@ -70,7 +70,13 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
var url = route.contentPath || route.path; var url = route.contentPath || route.path;
if (url.toLowerCase().indexOf('http') != 0 && url.indexOf('file:') != 0) { if (url.toLowerCase().indexOf('http') != 0 && url.indexOf('file:') != 0) {
url = baseUrl() + '/' + url;
if (url.indexOf('/') != 0) {
url = '/' + url;
}
url = baseUrl() + url;
} }
url += url.indexOf('?') == -1 ? '?' : '&'; url += url.indexOf('?') == -1 ? '?' : '&';
@ -188,8 +194,8 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
options = options || {}; options = options || {};
page({ page({
click: options.click || false, click: options.click !== false,
hashbang: true, hashbang: options.hashbang !== false,
enableHistory: enableHistory() enableHistory: enableHistory()
}); });
}); });

View file

@ -36,7 +36,7 @@
"tag": "v1.3.0", "tag": "v1.3.0",
"commit": "1662093611cda3fd29125cdab94a61d3d88093da" "commit": "1662093611cda3fd29125cdab94a61d3d88093da"
}, },
"_source": "git://github.com/polymerelements/iron-selector.git", "_source": "git://github.com/PolymerElements/iron-selector.git",
"_target": "^1.0.0", "_target": "^1.0.0",
"_originalSource": "polymerelements/iron-selector" "_originalSource": "PolymerElements/iron-selector"
} }