From 250420d8c6154172b27fe53aff30e78c227e8a67 Mon Sep 17 00:00:00 2001 From: Ananya Sen Date: Wed, 7 Mar 2012 14:26:37 -0800 Subject: minor fixes Signed-off-by: Ananya Sen --- js/stage/layout.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'js/stage') diff --git a/js/stage/layout.js b/js/stage/layout.js index ab2daf9b..8a53a08b 100755 --- a/js/stage/layout.js +++ b/js/stage/layout.js @@ -65,7 +65,7 @@ exports.Layout = Montage.create(Component, { handleOpenDocument: { value: function() { // Initial elements to draw is the entire node list - if(typeof this.application.ninja.documentController.activeDocument._liveNodeList !== "undefined"){//only for designer view + if(this.application.ninja.documentController.activeDocument.currentView === "design"){//only for designer view this.elementsToDraw = this.application.ninja.documentController.activeDocument._liveNodeList; } // Draw the elements and the 3d info @@ -105,7 +105,7 @@ exports.Layout = Montage.create(Component, { } // Make an array copy of the line node list which is not an array like object - if(typeof this.application.ninja.documentController.activeDocument._liveNodeList !== "undefined"){//only for designer view + if(this.application.ninja.documentController.activeDocument.currentView === "design"){//only for designer view this.domTree = Array.prototype.slice.call(this.application.ninja.documentController.activeDocument._liveNodeList, 0); } // Clear the elements to draw -- cgit v1.2.3