diff options
Diffstat (limited to 'install/ui/src')
-rw-r--r-- | install/ui/src/dojo.profile.js | 7 | ||||
-rw-r--r-- | install/ui/src/webui.profile.js | 5 |
2 files changed, 8 insertions, 4 deletions
diff --git a/install/ui/src/dojo.profile.js b/install/ui/src/dojo.profile.js index bbd5e6cd..035346ee 100644 --- a/install/ui/src/dojo.profile.js +++ b/install/ui/src/dojo.profile.js @@ -86,9 +86,10 @@ var profile = (function(){ "dojo/topic", //used by router // ^ adds 20 KB, most of it is dojo/dom* "dojo/store/Observable", - "dojo/store/Memory" - //"dojo/_base/NodeList" - + "dojo/store/Memory", + "dojo/query", + "dojo/NodeList-dom", + "dojo/promise/all" // Total size: 75KB ], customBase: true, diff --git a/install/ui/src/webui.profile.js b/install/ui/src/webui.profile.js index 3a53bd0f..e861eb15 100644 --- a/install/ui/src/webui.profile.js +++ b/install/ui/src/webui.profile.js @@ -105,7 +105,10 @@ var profile = (function(){ 'dojo/store/util/SimpleQueryEngine', 'dojo/topic', 'dojo/when', - 'dojo/domReady!' //added with '!' as a loader plugin + 'dojo/domReady!', //added with '!' as a loader plugin + "dojo/query", + "dojo/NodeList-dom", + "dojo/promise/all" ] } ], |