1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

removed require for cordova appshortcuts

This commit is contained in:
vitorsemeano 2019-03-16 19:34:19 +00:00
parent 164bba2faf
commit 8b6b9974c7

View file

@ -512,8 +512,8 @@ var AppInfo = {};
define("filerepository", [apiClientBowerPath + "/sync/filerepository"], returnFirstDependency);
}
define("localsync", [apiClientBowerPath + "/sync/localsync"], returnFirstDependency);
}
define("localsync", [apiClientBowerPath + "/sync/localsync"], returnFirstDependency);
}
function init() {
define("livetvcss", ["css!css/livetv.css"], returnFirstDependency);
@ -1180,7 +1180,7 @@ var AppInfo = {};
if ("cordova" === self.appMode || "android" === self.appMode) {
if (browser.android) {
require(["cordova/mediasession", "cordova/chromecast", "cordova/appshortcuts"]);
require(["cordova/mediasession"]);
} else if (browser.safari) {
require(["cordova/mediasession", "cordova/volume", "cordova/statusbar", "cordova/backgroundfetch"]);
}