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-16 14:09:58 -04:00
parent 07de1c52f9
commit d421bfda20
4 changed files with 28 additions and 10 deletions

View file

@ -1379,6 +1379,7 @@ var AppInfo = {};
AppInfo.enableHomeTabs = true;
AppInfo.enableNowPlayingPageBottomTabs = true;
AppInfo.enableAutoSave = browserInfo.mobile;
AppInfo.enableHashBang = Dashboard.isRunningInCordova();
AppInfo.enableAppStorePolicy = isCordova;
@ -1921,8 +1922,10 @@ var AppInfo = {};
// mock this for now. not used in this app
define("skinManager", [], function () {
return {
loadUserSkin: function () {
Emby.Page.show('/home.html');
}
};
@ -2943,7 +2946,7 @@ var AppInfo = {};
defineCoreRoutes();
Emby.Page.start({
click: true,
hashbang: true
hashbang: AppInfo.enableHashBang
});
var postInitDependencies = [];