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

removed require for module cordova filesystem

This commit is contained in:
vitorsemeano 2019-03-16 19:19:24 +00:00
parent e13796e4f3
commit 42beea23b6

View file

@ -429,11 +429,7 @@ var AppInfo = {};
var apiClientBowerPath = bowerPath + "/emby-apiclient";
var componentsPath = "components";
if ("android" === self.appMode) {
define("filesystem", ["cordova/filesystem"], returnFirstDependency);
} else {
define("filesystem", [componentsPath + "/filesystem"], returnFirstDependency);
}
define("filesystem", [componentsPath + "/filesystem"], returnFirstDependency);
if (window.IntersectionObserver && !browser.edge) {
define("lazyLoader", [componentsPath + "/lazyloader/lazyloader-intersectionobserver"], returnFirstDependency);