aboutsummaryrefslogtreecommitdiff
path: root/js/stage/layout.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/stage/layout.js')
-rwxr-xr-xjs/stage/layout.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/stage/layout.js b/js/stage/layout.js
index 650d448f..bf7e79c3 100755
--- a/js/stage/layout.js
+++ b/js/stage/layout.js
@@ -221,7 +221,7 @@ exports.Layout = Montage.create(Component, {
221 221
222 var zoomFactor = 1; 222 var zoomFactor = 1;
223 if (this.stage._viewport && this.stage._viewport.style && this.stage._viewport.style.zoom) { 223 if (this.stage._viewport && this.stage._viewport.style && this.stage._viewport.style.zoom) {
224 zoomFactor = Number(this.stage._viewport.style.zoom); 224 zoomFactor = Number(this.stage._viewport.style.zoom);
225 } 225 }
226 226
227 var sSL = this.stage._scrollLeft; 227 var sSL = this.stage._scrollLeft;
@@ -309,7 +309,7 @@ exports.Layout = Montage.create(Component, {
309 { 309 {
310 return; 310 return;
311 } 311 }
312 312
313 try { 313 try {
314 if(element.nodeType == 1 && this.application.ninja.currentDocument.inExclusion(element) === -1 ) { 314 if(element.nodeType == 1 && this.application.ninja.currentDocument.inExclusion(element) === -1 ) {
315 315
@@ -393,5 +393,5 @@ exports.Layout = Montage.create(Component, {
393 } 393 }
394 } 394 }
395 395
396 396
397}); 397});