diff options
author | Eric Guzman | 2012-06-11 13:28:42 -0700 |
---|---|---|
committer | Eric Guzman | 2012-06-11 13:28:42 -0700 |
commit | 3a4727ffc350216a434a7c6977b6a23653b77780 (patch) | |
tree | c5dff306f8803c36a16163ba5df1e7f492e762b5 /js/models/app-model.js | |
parent | d6b46ba496c9c8974ae39bb476aea35bcd1ddaf1 (diff) | |
parent | 337efc667372326ae2f9984d89a47bb151016774 (diff) | |
download | ninja-3a4727ffc350216a434a7c6977b6a23653b77780.tar.gz |
Merge branch 'binding' of github.com:dhg637/ninja-internal into binding
Diffstat (limited to 'js/models/app-model.js')
-rwxr-xr-x | js/models/app-model.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/js/models/app-model.js b/js/models/app-model.js index 1c599a32..ceba653e 100755 --- a/js/models/app-model.js +++ b/js/models/app-model.js | |||
@@ -9,6 +9,32 @@ var Montage = require("montage/core/core").Montage, | |||
9 | 9 | ||
10 | exports.AppModel = Montage.create(Component, { | 10 | exports.AppModel = Montage.create(Component, { |
11 | 11 | ||
12 | _currentDocument: { | ||
13 | value : null | ||
14 | }, | ||
15 | |||
16 | currentDocument : { | ||
17 | get : function() { | ||
18 | return this._currentDocument; | ||
19 | }, | ||
20 | set : function(value) { | ||
21 | if (value === this._currentDocument) { | ||
22 | return; | ||
23 | } | ||
24 | |||
25 | if(this._currentDocument && this._currentDocument.currentView === "design") { | ||
26 | this._currentDocument.model.draw3DGrid = this.show3dGrid; | ||
27 | } | ||
28 | |||
29 | this._currentDocument = value; | ||
30 | |||
31 | if(this._currentDocument && this._currentDocument.currentView === "design") { | ||
32 | this.show3dGrid = this._currentDocument.model.draw3DGrid; | ||
33 | } | ||
34 | |||
35 | } | ||
36 | }, | ||
37 | |||
12 | _livePreview: { | 38 | _livePreview: { |
13 | value: false | 39 | value: false |
14 | }, | 40 | }, |