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

remove more code related to camera roll

This commit is contained in:
dkanada 2019-01-21 18:05:15 +09:00
parent 08df4531e3
commit b5b928ec21
4 changed files with 3 additions and 73 deletions

View file

@ -304,8 +304,8 @@ var Dashboard = {
var embyWebComponentsBowerPath = bowerPath + "/emby-webcomponents";
"android" === self.appMode
? (define("filesystem", ["cordova/filesystem"], returnFirstDependency), define("cameraRoll", ["cordova/cameraroll"], returnFirstDependency))
: (define("filesystem", [embyWebComponentsBowerPath + "/filesystem"], returnFirstDependency), define("cameraRoll", [apiClientBowerPath + "/cameraroll"], returnFirstDependency));
? define("filesystem", ["cordova/filesystem"], returnFirstDependency)
: define("filesystem", [embyWebComponentsBowerPath + "/filesystem"], returnFirstDependency);
window.IntersectionObserver && !browser.edge
? define("lazyLoader", [embyWebComponentsBowerPath + "/lazyloader/lazyloader-intersectionobserver"], returnFirstDependency)
: define("lazyLoader", [embyWebComponentsBowerPath + "/lazyloader/lazyloader-scroll"], returnFirstDependency);
@ -1133,7 +1133,6 @@ var Dashboard = {
? define("fileupload", ["cordova/fileupload"], returnFirstDependency)
: define("fileupload", [apiClientBowerPath + "/fileupload"], returnFirstDependency);
define("connectionmanager", [apiClientBowerPath + "/connectionmanager"]);
define("contentuploader", [apiClientBowerPath + "/sync/contentuploader"], returnFirstDependency);
define("serversync", [apiClientBowerPath + "/sync/serversync"], returnFirstDependency);
define("multiserversync", [apiClientBowerPath + "/sync/multiserversync"], returnFirstDependency);
define("mediasync", [apiClientBowerPath + "/sync/mediasync"], returnFirstDependency);