From c2d35ee599eff085b8d01815db6fb9018132c2ee Mon Sep 17 00:00:00 2001 From: vitorsemeano Date: Sat, 16 Mar 2019 16:52:41 +0000 Subject: [PATCH] removing require for module file upload --- src/scripts/site.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/scripts/site.js b/src/scripts/site.js index 2a2f8a6980..193f616b05 100644 --- a/src/scripts/site.js +++ b/src/scripts/site.js @@ -1475,13 +1475,6 @@ var AppInfo = {}; define("filterMenu", [componentsPath + "/filtermenu/filtermenu"], returnFirstDependency); define("sortMenu", [componentsPath + "/sortmenu/sortmenu"], returnFirstDependency); define("registrationServices", [componentsPath + "/registrationservices/registrationservices"], returnFirstDependency); - - if ("cordova" === self.appMode || "android" === self.appMode) { - define("fileupload", ["cordova/fileupload"], returnFirstDependency); - } else { - define("fileupload", [apiClientBowerPath + "/fileupload"], returnFirstDependency); - } - define("connectionmanager", [apiClientBowerPath + "/connectionmanager"]); define("serversync", [apiClientBowerPath + "/sync/serversync"], returnFirstDependency); define("multiserversync", [apiClientBowerPath + "/sync/multiserversync"], returnFirstDependency);