diff options
Diffstat (limited to 'js/controllers')
-rwxr-xr-x | js/controllers/document-controller.js | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/js/controllers/document-controller.js b/js/controllers/document-controller.js index 7758f346..3e15511d 100755 --- a/js/controllers/document-controller.js +++ b/js/controllers/document-controller.js | |||
@@ -393,14 +393,20 @@ var DocumentController = exports.DocumentController = Montage.create(Component, | |||
393 | 393 | ||
394 | onCloseFile: { | 394 | onCloseFile: { |
395 | value: function(doc) { | 395 | value: function(doc) { |
396 | var previousFocusedDocument; | ||
396 | 397 | ||
397 | this._documents.splice(this._documents.indexOf(doc), 1); | 398 | this._documents.splice(this._documents.indexOf(doc), 1); |
398 | 399 | ||
399 | this._activeDocument = null; | 400 | if(this._documents.length > 0) { |
400 | 401 | previousFocusedDocument = this._documents[this._documents.length - 1]; | |
401 | this.application.ninja.stage.hideRulers(); | 402 | this._activeDocument = previousFocusedDocument; |
403 | this.switchDocuments(this.activeDocument, previousFocusedDocument, true); | ||
404 | } else { | ||
405 | this._activeDocument = null; | ||
406 | this.application.ninja.stage.hideRulers(); | ||
402 | 407 | ||
403 | this.application.ninja.stage.hideCanvas(true); | 408 | this.application.ninja.stage.hideCanvas(true); |
409 | } | ||
404 | 410 | ||
405 | //TODO: Use references for those instead of calling getElementById | 411 | //TODO: Use references for those instead of calling getElementById |
406 | if(this._documents.length === 0){ | 412 | if(this._documents.length === 0){ |
@@ -524,6 +530,11 @@ var DocumentController = exports.DocumentController = Montage.create(Component, | |||
524 | this.application.ninja.stage.hideCanvas(true); | 530 | this.application.ninja.stage.hideCanvas(true); |
525 | this.application.ninja.stage.hideRulers(); | 531 | this.application.ninja.stage.hideRulers(); |
526 | } | 532 | } |
533 | }else if(!currentDocument && newDocument.currentView === "code"){ | ||
534 | this.application.ninja.stage.showCodeViewBar(true); | ||
535 | this.application.ninja.stage.collapseAllPanels(); | ||
536 | this.application.ninja.stage.hideCanvas(true); | ||
537 | this.application.ninja.stage.hideRulers(); | ||
527 | } | 538 | } |
528 | 539 | ||
529 | this.application.ninja.stage.clearAllCanvas(); | 540 | this.application.ninja.stage.clearAllCanvas(); |