diff options
author | Nivesh Rajbhandari | 2012-05-04 17:10:01 -0700 |
---|---|---|
committer | Nivesh Rajbhandari | 2012-05-04 17:10:01 -0700 |
commit | 27935436ad8cd0675311667f70b6a285eb126a94 (patch) | |
tree | e005ed8f855b1331eca878e248d4fa657cbdbc96 /js/tools/ZoomTool.js | |
parent | efe62dff2ba6894551fb9679d150255bae5af36e (diff) | |
download | ninja-27935436ad8cd0675311667f70b6a285eb126a94.tar.gz |
Fixing references to iframe's styles in new template.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js/tools/ZoomTool.js')
-rwxr-xr-x | js/tools/ZoomTool.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/tools/ZoomTool.js b/js/tools/ZoomTool.js index 93caf984..17301262 100755 --- a/js/tools/ZoomTool.js +++ b/js/tools/ZoomTool.js | |||
@@ -280,7 +280,9 @@ exports.ZoomTool = Montage.create(DrawingTool, { | |||
280 | this.application.ninja.documentBar.zoomFactor = zoomFactor*100; | 280 | this.application.ninja.documentBar.zoomFactor = zoomFactor*100; |
281 | //this.application.ninja.stage.zoomFactor = zoomFactor; | 281 | //this.application.ninja.stage.zoomFactor = zoomFactor; |
282 | if (zoomFactor >= 1) | 282 | if (zoomFactor >= 1) |
283 | this.application.ninja.currentDocument.iframe.style.zoom = zoomFactor; | 283 | { |
284 | this.application.ninja.currentDocument.model.views.design.iframe.style.zoom = zoomFactor; | ||
285 | } | ||
284 | this.application.ninja.stage._firstDraw = false; | 286 | this.application.ninja.stage._firstDraw = false; |
285 | //tmp3 = viewUtils.localToGlobal( localPt, userContent ); // DEBUG - remove this line | 287 | //tmp3 = viewUtils.localToGlobal( localPt, userContent ); // DEBUG - remove this line |
286 | 288 | ||