diff options
author | Eric Guzman | 2012-06-20 12:40:49 -0700 |
---|---|---|
committer | Eric Guzman | 2012-06-20 12:40:49 -0700 |
commit | 8ac2ce1566995c91fe4721df2b121ed6437b9e1c (patch) | |
tree | 5ba6005fd725ad348dd6d9ceb104a9b64c68c102 /js/stage/objects-tray.reel | |
parent | e9783135c3a6c95b7ccc3a6e45f40a030a2a067c (diff) | |
download | ninja-8ac2ce1566995c91fe4721df2b121ed6437b9e1c.tar.gz |
Binding HUD - Show hud for "off stage" objects in tray
Diffstat (limited to 'js/stage/objects-tray.reel')
-rw-r--r-- | js/stage/objects-tray.reel/objects-tray.html | 1 | ||||
-rw-r--r-- | js/stage/objects-tray.reel/objects-tray.js | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/js/stage/objects-tray.reel/objects-tray.html b/js/stage/objects-tray.reel/objects-tray.html index 5a0db85e..901f3e58 100644 --- a/js/stage/objects-tray.reel/objects-tray.html +++ b/js/stage/objects-tray.reel/objects-tray.html | |||
@@ -15,6 +15,7 @@ | |||
15 | "prototype": "js/stage/objects-tray.reel", | 15 | "prototype": "js/stage/objects-tray.reel", |
16 | "properties": { | 16 | "properties": { |
17 | "element": {"#": "objects-tray"}, | 17 | "element": {"#": "objects-tray"}, |
18 | "iconsRepetition": {"@": "repetition" }, | ||
18 | "offStageObjectsController": {"@": "arrayController"} | 19 | "offStageObjectsController": {"@": "arrayController"} |
19 | } | 20 | } |
20 | }, | 21 | }, |
diff --git a/js/stage/objects-tray.reel/objects-tray.js b/js/stage/objects-tray.reel/objects-tray.js index 360d6037..75ece4c3 100644 --- a/js/stage/objects-tray.reel/objects-tray.js +++ b/js/stage/objects-tray.reel/objects-tray.js | |||
@@ -16,6 +16,9 @@ exports.ObjectsTray = Montage.create(Component, { | |||
16 | _empty : { value: null }, | 16 | _empty : { value: null }, |
17 | _workspaceMode : { value: null }, | 17 | _workspaceMode : { value: null }, |
18 | 18 | ||
19 | iconsRepetition : { | ||
20 | value: null | ||
21 | }, | ||
19 | offStageObjectsController : { | 22 | offStageObjectsController : { |
20 | value: null | 23 | value: null |
21 | }, | 24 | }, |