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 22:46:13 -04:00
parent 48d4b0c287
commit c389d502e0
9 changed files with 95 additions and 41 deletions

View file

@ -171,7 +171,7 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
}
var firstConnectionResult;
function start() {
function start(options) {
loading.show();
@ -185,8 +185,10 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
loading.hide();
options = options || {};
page({
click: true,
click: options.click || false,
hashbang: true,
enableHistory: enableHistory()
});