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

fix localsync define

This commit is contained in:
Luke Pulverenti 2016-08-20 03:29:06 -04:00
parent 6afd529cbc
commit 5c12589db7

View file

@ -1748,10 +1748,10 @@ var AppInfo = {};
}
if (Dashboard.isRunningInCordova() && browserInfo.android) {
define("localsync", ["cordova/android/localsync"]);
define("localsync", ["cordova/android/localsync"], returnFirstDependency);
}
else {
define("localsync", ["scripts/localsync"]);
define("localsync", ["scripts/localsync"], returnFirstDependency);
}
define("livetvcss", ['css!css/livetv.css']);