diff options
author | Pushkar Joshi | 2012-06-06 07:54:11 -0700 |
---|---|---|
committer | Pushkar Joshi | 2012-06-06 07:54:11 -0700 |
commit | cfa1402ac2ce831a83a9d4263d06c452c157a414 (patch) | |
tree | adb8f1f1ad1c4dd1e7e9eee1bd206f1ec338d20c /js/components/menu/menu.reel | |
parent | 8606ee7ec851cb0a971e7556eba5d9386f1b3639 (diff) | |
parent | 5ba54dc275b07e7b2d0ed14751761d1e663d3d14 (diff) | |
download | ninja-cfa1402ac2ce831a83a9d4263d06c452c157a414.tar.gz |
Merge branch 'pentool' into brushtool
Diffstat (limited to 'js/components/menu/menu.reel')
-rwxr-xr-x | js/components/menu/menu.reel/menu.html | 25 | ||||
-rwxr-xr-x | js/components/menu/menu.reel/menu.js | 17 |
2 files changed, 24 insertions, 18 deletions
diff --git a/js/components/menu/menu.reel/menu.html b/js/components/menu/menu.reel/menu.html index 49956f8a..f15cf119 100755 --- a/js/components/menu/menu.reel/menu.html +++ b/js/components/menu/menu.reel/menu.html | |||
@@ -12,7 +12,10 @@ | |||
12 | <script type="text/montage-serialization"> | 12 | <script type="text/montage-serialization"> |
13 | { | 13 | { |
14 | "menudata": { | 14 | "menudata": { |
15 | "prototype": "js/data/menu-data" | 15 | "prototype": "js/data/menu-data", |
16 | "bindings": { | ||
17 | "currentDocument": {"<-": "@owner.currentDocument"} | ||
18 | } | ||
16 | }, | 19 | }, |
17 | 20 | ||
18 | "menuController": { | 21 | "menuController": { |
@@ -21,11 +24,7 @@ | |||
21 | "automaticallyOrganizeObjects": false | 24 | "automaticallyOrganizeObjects": false |
22 | }, | 25 | }, |
23 | "bindings": { | 26 | "bindings": { |
24 | "content": { | 27 | "content": {"<-": "@menudata.topLevelMenu"} |
25 | "boundObject": {"@": "menudata"}, | ||
26 | "boundObjectPropertyPath": "topLevelMenu", | ||
27 | "oneway": true | ||
28 | } | ||
29 | } | 28 | } |
30 | }, | 29 | }, |
31 | 30 | ||
@@ -44,18 +43,8 @@ | |||
44 | "element": { "#": "menuItem" } | 43 | "element": { "#": "menuItem" } |
45 | }, | 44 | }, |
46 | "bindings": { | 45 | "bindings": { |
47 | "data": { | 46 | "data": {"<-": "@repetition.objectAtCurrentIteration"}, |
48 | "boundObject": {"@": "repetition"}, | 47 | "_menu": {"<-": "@repetition.menuComponent"} |
49 | "boundObjectPropertyPath": "objectAtCurrentIteration", | ||
50 | "oneway": true | ||
51 | }, | ||
52 | "_menu": { | ||
53 | "boundObject": {"@": "repetition"}, | ||
54 | "boundObjectPropertyPath": "menuComponent", | ||
55 | "oneway": true | ||
56 | } | ||
57 | |||
58 | |||
59 | } | 48 | } |
60 | }, | 49 | }, |
61 | 50 | ||
diff --git a/js/components/menu/menu.reel/menu.js b/js/components/menu/menu.reel/menu.js index fb221640..50d3f0bc 100755 --- a/js/components/menu/menu.reel/menu.js +++ b/js/components/menu/menu.reel/menu.js | |||
@@ -9,6 +9,23 @@ var Montage = require("montage/core/core").Montage, | |||
9 | 9 | ||
10 | exports.Menu = Montage.create(Component, { | 10 | exports.Menu = 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 | this._currentDocument = value; | ||
26 | } | ||
27 | }, | ||
28 | |||
12 | _active: { | 29 | _active: { |
13 | value: false | 30 | value: false |
14 | }, | 31 | }, |