aboutsummaryrefslogtreecommitdiff
path: root/js/components/layout/stage-mode.reel/stage-mode.js
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-06-28 18:18:11 -0700
committerJose Antonio Marquez2012-06-28 18:18:11 -0700
commit2f1ad000aeda418696d6ed74202db5e6565ab671 (patch)
tree92aa8ba48645a621c6f335bfc101335ce69b496c /js/components/layout/stage-mode.reel/stage-mode.js
parenta859432f0cc5746e2855c16565a75391ea657772 (diff)
parent8cf2345f5ce1f03ec06a1f34e0ef2dba0d5055bd (diff)
downloadninja-2f1ad000aeda418696d6ed74202db5e6565ab671.tar.gz
Merge branch 'refs/heads/Ninja-Internal' into Document
Diffstat (limited to 'js/components/layout/stage-mode.reel/stage-mode.js')
-rwxr-xr-xjs/components/layout/stage-mode.reel/stage-mode.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/js/components/layout/stage-mode.reel/stage-mode.js b/js/components/layout/stage-mode.reel/stage-mode.js
index cb42276b..b772d688 100755
--- a/js/components/layout/stage-mode.reel/stage-mode.js
+++ b/js/components/layout/stage-mode.reel/stage-mode.js
@@ -9,17 +9,17 @@ var Montage = require("montage/core/core").Montage,
9 9
10exports.StageMode = Montage.create(Component, { 10exports.StageMode = Montage.create(Component, {
11 11
12 _livePreview: { 12 _chromePreview: {
13 value: null 13 value: null
14 }, 14 },
15 15
16 livePreview: { 16 chromePreview: {
17 get: function() { 17 get: function() {
18 return this._livePreview; 18 return this._chromePreview;
19 }, 19 },
20 set: function(value) { 20 set: function(value) {
21 if(value !== this._livePreview) { 21 if(value !== this._chromePreview) {
22 this._livePreview = value; 22 this._chromePreview = value;
23 this.needsDraw = true; 23 this.needsDraw = true;
24 } 24 }
25 } 25 }
@@ -46,7 +46,7 @@ exports.StageMode = Montage.create(Component, {
46 46
47 handleClick: { 47 handleClick: {
48 value: function(event) { 48 value: function(event) {
49 this.livePreview = !this.livePreview; 49 this.chromePreview = !this.chromePreview;
50 } 50 }
51 } 51 }
52}); \ No newline at end of file 52}); \ No newline at end of file