diff options
Diffstat (limited to 'js/controllers/document-controller.js')
-rwxr-xr-x | js/controllers/document-controller.js | 32 |
1 files changed, 19 insertions, 13 deletions
diff --git a/js/controllers/document-controller.js b/js/controllers/document-controller.js index f397ace7..b1a22c1b 100755 --- a/js/controllers/document-controller.js +++ b/js/controllers/document-controller.js | |||
@@ -34,17 +34,17 @@ DocumentController = exports.DocumentController = Montage.create(Component, { | |||
34 | return this._activeDocument; | 34 | return this._activeDocument; |
35 | }, | 35 | }, |
36 | set: function(doc) { | 36 | set: function(doc) { |
37 | if(this._activeDocument) this._activeDocument.isActive = false; | 37 | if(!!this._activeDocument) this._activeDocument.isActive = false; |
38 | |||
39 | if(this._documents.indexOf(doc) === -1) this._documents.push(doc); | ||
40 | 38 | ||
41 | this._activeDocument = doc; | 39 | this._activeDocument = doc; |
42 | this._activeDocument.isActive = true; | 40 | if(!!this._activeDocument){ |
43 | 41 | ||
44 | if(!!this._activeDocument.editor){ | 42 | if(this._documents.indexOf(doc) === -1) this._documents.push(doc); |
45 | this._activeDocument.editor.focus(); | 43 | this._activeDocument.isActive = true; |
44 | if(!!this._activeDocument.editor){ | ||
45 | this._activeDocument.editor.focus(); | ||
46 | } | ||
46 | } | 47 | } |
47 | |||
48 | } | 48 | } |
49 | }, | 49 | }, |
50 | 50 | ||
@@ -184,7 +184,7 @@ DocumentController = exports.DocumentController = Montage.create(Component, { | |||
184 | switch (doc.extension) { | 184 | switch (doc.extension) { |
185 | case 'html': case 'html': | 185 | case 'html': case 'html': |
186 | //Open in designer view | 186 | //Open in designer view |
187 | Montage.create(HTMLDocument).initialize(doc, Uuid.generate(), this._createIframeElement(), this._onOpenDocument); | 187 | Montage.create(HTMLDocument).initialize(doc, Uuid.generate(), this._createIframeElement(), this._onOpenDocument.bind(this)); |
188 | break; | 188 | break; |
189 | default: | 189 | default: |
190 | //Open in code view | 190 | //Open in code view |
@@ -250,7 +250,6 @@ DocumentController = exports.DocumentController = Montage.create(Component, { | |||
250 | } | 250 | } |
251 | 251 | ||
252 | var doc = this._findDocumentByUUID(id); | 252 | var doc = this._findDocumentByUUID(id); |
253 | this._removeDocumentView(doc.container); | ||
254 | 253 | ||
255 | var closeDocumentIndex = this._findIndexByUUID(id); | 254 | var closeDocumentIndex = this._findIndexByUUID(id); |
256 | this._documents.splice(this._findIndexByUUID(id), 1); | 255 | this._documents.splice(this._findIndexByUUID(id), 1); |
@@ -263,8 +262,11 @@ DocumentController = exports.DocumentController = Montage.create(Component, { | |||
263 | nextDocumentIndex = closeDocumentIndex - 1; | 262 | nextDocumentIndex = closeDocumentIndex - 1; |
264 | } | 263 | } |
265 | this.application.ninja.stage.stageView.switchDocument(this._documents[nextDocumentIndex]); | 264 | this.application.ninja.stage.stageView.switchDocument(this._documents[nextDocumentIndex]); |
265 | this._removeDocumentView(doc.container); | ||
266 | }else if(this._documents.length === 0){ | 266 | }else if(this._documents.length === 0){ |
267 | //if there are no documents to switch to then just show the iframeContainer | 267 | this.activeDocument = null; |
268 | this._removeDocumentView(doc.container); | ||
269 | this.application.ninja.stage.stageView.hideRulers(); | ||
268 | document.getElementById("iframeContainer").style.display="block"; | 270 | document.getElementById("iframeContainer").style.display="block"; |
269 | } | 271 | } |
270 | } | 272 | } |
@@ -275,11 +277,15 @@ DocumentController = exports.DocumentController = Montage.create(Component, { | |||
275 | _onOpenDocument: { | 277 | _onOpenDocument: { |
276 | value: function(doc){ | 278 | value: function(doc){ |
277 | //var data = DocumentManager.activeDocument; | 279 | //var data = DocumentManager.activeDocument; |
278 | //DocumentManager._hideCurrentDocument(); | ||
279 | 280 | ||
280 | //stageManagerModule.stageManager.toggleCanvas(); | 281 | this._hideCurrentDocument(); |
282 | this.application.ninja.stage.stageView.hideOtherDocuments(doc.uuid); | ||
283 | |||
284 | this.application.ninja.stage.hideCanvas(false); | ||
285 | |||
286 | this.activeDocument = doc; | ||
281 | 287 | ||
282 | DocumentController.activeDocument = doc; | 288 | this._showCurrentDocument(); |
283 | 289 | ||
284 | NJevent("onOpenDocument", doc); | 290 | NJevent("onOpenDocument", doc); |
285 | // appDelegateModule.MyAppDelegate.onSetActiveDocument(); | 291 | // appDelegateModule.MyAppDelegate.onSetActiveDocument(); |