From 8b6b9974c79812fd9c7e0e761b66cb1309049852 Mon Sep 17 00:00:00 2001 From: vitorsemeano Date: Sat, 16 Mar 2019 19:34:19 +0000 Subject: [PATCH] removed require for cordova appshortcuts --- src/scripts/site.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/scripts/site.js b/src/scripts/site.js index 5683e1538c..e3bfe5c8b2 100644 --- a/src/scripts/site.js +++ b/src/scripts/site.js @@ -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"]); }