diff options
Diffstat (limited to 'js/stage')
-rwxr-xr-x | js/stage/stage-view.reel/stage-view.js | 8 | ||||
-rwxr-xr-x | js/stage/stage.reel/stage.js | 1 |
2 files changed, 4 insertions, 5 deletions
diff --git a/js/stage/stage-view.reel/stage-view.js b/js/stage/stage-view.reel/stage-view.js index 0b74105c..31f40d09 100755 --- a/js/stage/stage-view.reel/stage-view.js +++ b/js/stage/stage-view.reel/stage-view.js | |||
@@ -198,14 +198,14 @@ exports.StageView = Montage.create(Component, { | |||
198 | }, | 198 | }, |
199 | showRulers:{ | 199 | showRulers:{ |
200 | value:function(){ | 200 | value:function(){ |
201 | this.application.ninja.rulerTop.style.display = "block"; | 201 | this.application.ninja.rulerTop.style.background = "url('../images/temp/ruler-top.png')"; |
202 | this.application.ninja.rulerLeft.style.display = "block"; | 202 | this.application.ninja.rulerLeft.style.background = "url('../images/temp/ruler-left.png')"; |
203 | } | 203 | } |
204 | }, | 204 | }, |
205 | hideRulers:{ | 205 | hideRulers:{ |
206 | value:function(){ | 206 | value:function(){ |
207 | this.application.ninja.rulerTop.style.display = "none"; | 207 | this.application.ninja.rulerTop.style.background = "rgb(128,128,128)"; |
208 | this.application.ninja.rulerLeft.style.display = "none"; | 208 | this.application.ninja.rulerLeft.style.background = "rgb(128,128,128)"; |
209 | } | 209 | } |
210 | }, | 210 | }, |
211 | 211 | ||
diff --git a/js/stage/stage.reel/stage.js b/js/stage/stage.reel/stage.js index 89b2d475..59eb9317 100755 --- a/js/stage/stage.reel/stage.js +++ b/js/stage/stage.reel/stage.js | |||
@@ -11,7 +11,6 @@ var Montage = require("montage/core/core").Montage, | |||
11 | 11 | ||
12 | exports.Stage = Montage.create(Component, { | 12 | exports.Stage = Montage.create(Component, { |
13 | 13 | ||
14 | textTool: { value: null }, | ||
15 | // TODO - Need to figure out how to remove this dependency | 14 | // TODO - Need to figure out how to remove this dependency |
16 | // Needed by some tools that depend on selectionDrawn event to set up some logic | 15 | // Needed by some tools that depend on selectionDrawn event to set up some logic |
17 | drawNow: { value : false }, | 16 | drawNow: { value : false }, |