diff options
author | Valerio Virgillito | 2012-05-29 23:52:59 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-29 23:52:59 -0700 |
commit | d8840eda0d3b3e31fb5a72306fe66608f4f99c2b (patch) | |
tree | b95ee9919673fef42980ac58d11bd3f1bcb6b6af /js/components/menu/menu.reel/menu.js | |
parent | 5d7dff15e1e603e3b37057b9843e4b1eef1b2dca (diff) | |
download | ninja-d8840eda0d3b3e31fb5a72306fe66608f4f99c2b.tar.gz |
fixing the menu bindings and some cleanup of the stage
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/components/menu/menu.reel/menu.js')
-rwxr-xr-x | js/components/menu/menu.reel/menu.js | 17 |
1 files changed, 17 insertions, 0 deletions
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 | }, |