diff options
Diffstat (limited to 'js')
4 files changed, 8 insertions, 5 deletions
diff --git a/js/io/document/document-controller.js b/js/io/document/document-controller.js index 8ce43dcc..d7a19e35 100755 --- a/js/io/document/document-controller.js +++ b/js/io/document/document-controller.js | |||
@@ -15,7 +15,7 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
15 | var Montage = require("montage/core/core").Montage, | 15 | var Montage = require("montage/core/core").Montage, |
16 | Component = require("montage/ui/component").Component, | 16 | Component = require("montage/ui/component").Component, |
17 | Uuid = require("montage/core/uuid").Uuid, | 17 | Uuid = require("montage/core/uuid").Uuid, |
18 | nj= require("js/lib/NJUtils.js").NJUtils, | 18 | //nj= ("js/lib/NJUtils.js").NJUtils, |
19 | HTMLDocument = require("js/io/document/html-document").HTMLDocument, | 19 | HTMLDocument = require("js/io/document/html-document").HTMLDocument, |
20 | TextDocument = require("js/io/document/text-document").TextDocument; | 20 | TextDocument = require("js/io/document/text-document").TextDocument; |
21 | 21 | ||
diff --git a/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js b/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js index a747b8de..3a2e3e96 100644 --- a/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js +++ b/js/io/ui/new-file-dialog/new-file-options-navigator.reel/new-file-options-navigator.js | |||
@@ -8,8 +8,8 @@ var Montage = require("montage/core/core").Montage, | |||
8 | Component = require("montage/ui/component").Component, | 8 | Component = require("montage/ui/component").Component, |
9 | iconsListModule = require("js/components/ui/icon-list-basic/iconsList.reel"), | 9 | iconsListModule = require("js/components/ui/icon-list-basic/iconsList.reel"), |
10 | treeModule = require("js/components/ui/tree-basic/tree.reel"), | 10 | treeModule = require("js/components/ui/tree-basic/tree.reel"), |
11 | newFileLocationSelectionModule = require("js/io/ui/new-file-dialog/new-file-workflow-controller"), | 11 | newFileLocationSelectionModule = require("js/io/ui/new-file-dialog/new-file-workflow-controller"); |
12 | nj= require("js/lib/NJUtils.js").NJUtils; | 12 | //nj= ("js/lib/NJUtils.js").NJUtils; |
13 | 13 | ||
14 | var NewFileOptionsNavigator = exports.NewFileOptionsNavigator = Montage.create(Component, { | 14 | var NewFileOptionsNavigator = exports.NewFileOptionsNavigator = Montage.create(Component, { |
15 | 15 | ||
diff --git a/js/io/ui/save-as-dialog.reel/save-as-dialog.js b/js/io/ui/save-as-dialog.reel/save-as-dialog.js index b20bed87..de5266a5 100644 --- a/js/io/ui/save-as-dialog.reel/save-as-dialog.js +++ b/js/io/ui/save-as-dialog.reel/save-as-dialog.js | |||
@@ -5,8 +5,8 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
5 | </copyright> */ | 5 | </copyright> */ |
6 | 6 | ||
7 | var Montage = require("montage/core/core").Montage, | 7 | var Montage = require("montage/core/core").Montage, |
8 | Component = require("montage/ui/component").Component, | 8 | Component = require("montage/ui/component").Component; |
9 | nj= require("js/lib/NJUtils.js").NJUtils; | 9 | //nj= ("js/lib/NJUtils.js").NJUtils; |
10 | 10 | ||
11 | var SaveAsDialog = exports.SaveAsDialog = Montage.create(Component, { | 11 | var SaveAsDialog = exports.SaveAsDialog = Montage.create(Component, { |
12 | 12 | ||
diff --git a/js/ninja.reel/ninja.js b/js/ninja.reel/ninja.js index 90015f5a..3b9fc1c5 100755 --- a/js/ninja.reel/ninja.js +++ b/js/ninja.reel/ninja.js | |||
@@ -101,6 +101,9 @@ exports.Ninja = Montage.create(Component, { | |||
101 | didDraw: { | 101 | didDraw: { |
102 | value: function() { | 102 | value: function() { |
103 | if(!this._didDraw) { | 103 | if(!this._didDraw) { |
104 | if (!this.application.ninja.coreIoApi.ioServiceDetected) { | ||
105 | var check = this.application.ninja.coreIoApi.cloudAvailable(); | ||
106 | } | ||
104 | NJevent("appLoaded"); | 107 | NJevent("appLoaded"); |
105 | this._didDraw = true; | 108 | this._didDraw = true; |
106 | } | 109 | } |