aboutsummaryrefslogtreecommitdiff
path: root/js/components/menu/menu.reel/menu.js
diff options
context:
space:
mode:
authorJose Antonio Marquez2012-06-20 11:30:26 -0700
committerJose Antonio Marquez2012-06-20 11:30:26 -0700
commitfe569a08853fe986849b6496384d01f3abb65e40 (patch)
tree2c3a64f0b51f32df0e4cf4d23ca34740b89598ba /js/components/menu/menu.reel/menu.js
parent7ca20cc617fb1f9d6d692b27e8bbb74f69693dcd (diff)
parent4fb904eb5660cac28e2085d4aedce8fa249339b5 (diff)
downloadninja-fe569a08853fe986849b6496384d01f3abb65e40.tar.gz
Merge branch 'refs/heads/Ninja-Internal' into Color
Diffstat (limited to 'js/components/menu/menu.reel/menu.js')
-rwxr-xr-xjs/components/menu/menu.reel/menu.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/js/components/menu/menu.reel/menu.js b/js/components/menu/menu.reel/menu.js
index 50d3f0bc..1560100a 100755
--- a/js/components/menu/menu.reel/menu.js
+++ b/js/components/menu/menu.reel/menu.js
@@ -83,19 +83,12 @@ exports.Menu = Montage.create(Component, {
83 83
84 handleMousedown: { 84 handleMousedown: {
85 value: function(evt) { 85 value: function(evt) {
86
87 if(this.active && (this.getZIndex(evt.target) < 9000 || evt.target.id === "topMenu")) { 86 if(this.active && (this.getZIndex(evt.target) < 9000 || evt.target.id === "topMenu")) {
88 this._activeEntry.deselect(); 87 this._activeEntry.deselect();
89 this._activeEntry = null; 88 this._activeEntry = null;
90 this.active = false; 89 this.active = false;
91 90 this.element.ownerDocument.removeEventListener('mousedown', this, false);
92 //console.log(this.rep.objects[1]);
93 //this.controller.content[1].header = "BLAH";
94 } 91 }
95
96// console.log(evt.target.style['z-index']);
97// console.log(this.getZIndex(evt.target));
98
99 } 92 }
100 }, 93 },
101 94