diff options
author | Eric Guzman | 2012-03-13 13:12:43 -0700 |
---|---|---|
committer | Eric Guzman | 2012-03-13 13:12:43 -0700 |
commit | 61fd46cad105f0a52afa028e5301b96120f00ab4 (patch) | |
tree | d8a7e23e1ea7d9b5c64a288822b7797bb19e50d4 /js/stage/layout.js | |
parent | 7e3161153b87b891875ac65368a19aed12909fa3 (diff) | |
parent | f56b8cf4d3316d250c0f0045fb78f0dbd5c56e94 (diff) | |
download | ninja-61fd46cad105f0a52afa028e5301b96120f00ab4.tar.gz |
Merge branch 'refs/heads/master' into CSSPanelUpdates
Conflicts:
js/controllers/styles-controller.js
Diffstat (limited to 'js/stage/layout.js')
-rwxr-xr-x | js/stage/layout.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/js/stage/layout.js b/js/stage/layout.js index de4c67c1..8a53a08b 100755 --- a/js/stage/layout.js +++ b/js/stage/layout.js | |||
@@ -65,8 +65,9 @@ exports.Layout = Montage.create(Component, { | |||
65 | handleOpenDocument: { | 65 | handleOpenDocument: { |
66 | value: function() { | 66 | value: function() { |
67 | // Initial elements to draw is the entire node list | 67 | // Initial elements to draw is the entire node list |
68 | this.elementsToDraw = this.application.ninja.documentController.activeDocument._liveNodeList; | 68 | if(this.application.ninja.documentController.activeDocument.currentView === "design"){//only for designer view |
69 | 69 | this.elementsToDraw = this.application.ninja.documentController.activeDocument._liveNodeList; | |
70 | } | ||
70 | // Draw the elements and the 3d info | 71 | // Draw the elements and the 3d info |
71 | this.draw(); | 72 | this.draw(); |
72 | this.draw3DInfo(false); | 73 | this.draw3DInfo(false); |
@@ -104,8 +105,9 @@ exports.Layout = Montage.create(Component, { | |||
104 | } | 105 | } |
105 | 106 | ||
106 | // Make an array copy of the line node list which is not an array like object | 107 | // Make an array copy of the line node list which is not an array like object |
107 | this.domTree = Array.prototype.slice.call(this.application.ninja.documentController.activeDocument._liveNodeList, 0); | 108 | if(this.application.ninja.documentController.activeDocument.currentView === "design"){//only for designer view |
108 | 109 | this.domTree = Array.prototype.slice.call(this.application.ninja.documentController.activeDocument._liveNodeList, 0); | |
110 | } | ||
109 | // Clear the elements to draw | 111 | // Clear the elements to draw |
110 | this.elementsToDraw.length = 0; | 112 | this.elementsToDraw.length = 0; |
111 | 113 | ||