aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValerio Virgillito2012-07-20 15:15:27 -0700
committerValerio Virgillito2012-07-20 15:15:27 -0700
commit288b81e06db68b785524db5c7f7ae1ecbc3d83b1 (patch)
tree59bee108ab01a84f306a7d8e536d176708538194
parentbf4bd611e6fadf45fa9dc50ad72902040075ff0c (diff)
downloadninja-288b81e06db68b785524db5c7f7ae1ecbc3d83b1.tar.gz
Binding view: fixed mouse move event outside the hud
- Changing the variable event to 'e' Signed-off-by: Valerio Virgillito <valerio@motorola.com>
-rwxr-xr-xjs/stage/binding-view.reel/binding-view.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/stage/binding-view.reel/binding-view.js b/js/stage/binding-view.reel/binding-view.js
index 3e83281e..b207cc3d 100755
--- a/js/stage/binding-view.reel/binding-view.js
+++ b/js/stage/binding-view.reel/binding-view.js
@@ -365,7 +365,7 @@ exports.BindingView = Montage.create(Component, {
365 this.mouseOverHud = overHud; 365 this.mouseOverHud = overHud;
366 if(this._isDrawingConnection && !overHud) { 366 if(this._isDrawingConnection && !overHud) {
367 //NOTE : Continue This content. mouse over select 367 //NOTE : Continue This content. mouse over select
368 var obj = this.application.ninja.stage.getElement(event, true); 368 var obj = this.application.ninja.stage.getElement(e, true);
369 if (obj && obj !== this.selectedElement) 369 if (obj && obj !== this.selectedElement)
370 { 370 {
371 if (!obj.controller || obj === null) 371 if (!obj.controller || obj === null)