diff options
-rwxr-xr-x | js/stage/binding-view.reel/binding-hud.reel/binding-hud.js | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/js/stage/binding-view.reel/binding-hud.reel/binding-hud.js b/js/stage/binding-view.reel/binding-hud.reel/binding-hud.js index 9918b06d..85e4b87b 100755 --- a/js/stage/binding-view.reel/binding-hud.reel/binding-hud.js +++ b/js/stage/binding-view.reel/binding-hud.reel/binding-hud.js | |||
@@ -73,12 +73,7 @@ exports.BindingHud = Montage.create(Component, { | |||
73 | this.title = icon.name; | 73 | this.title = icon.name; |
74 | this.x = iconOffsets.x; | 74 | this.x = iconOffsets.x; |
75 | this.y = iconOffsets.y - 80; | 75 | this.y = iconOffsets.y - 80; |
76 | } else { | ||
77 | this.title = val.identifier; | ||
78 | this.x = val.element.offsetLeft; | ||
79 | this.y = val.element.offsetTop; | ||
80 | } | 76 | } |
81 | |||
82 | this.needsDraw = true; | 77 | this.needsDraw = true; |
83 | 78 | ||
84 | } | 79 | } |
@@ -202,6 +197,12 @@ exports.BindingHud = Montage.create(Component, { | |||
202 | this.scrollUp.style.display = "block"; | 197 | this.scrollUp.style.display = "block"; |
203 | this.scrollDown.style.display = "block"; | 198 | this.scrollDown.style.display = "block"; |
204 | } | 199 | } |
200 | var isOffStage = this.application.ninja.objectsController.isOffStageObject(this.userComponent); | ||
201 | if(!isOffStage) { | ||
202 | this.title = this.userComponent.identifier; | ||
203 | this.x = this.userComponent.element.offsetLeft; | ||
204 | this.y = this.userComponent.element.offsetTop; | ||
205 | } | ||
205 | } | 206 | } |
206 | }, | 207 | }, |
207 | 208 | ||
@@ -289,6 +290,12 @@ exports.BindingHud = Montage.create(Component, { | |||
289 | } | 290 | } |
290 | }, | 291 | }, |
291 | 292 | ||
293 | willDraw: { | ||
294 | value: function() { | ||
295 | |||
296 | } | ||
297 | }, | ||
298 | |||
292 | draw: { | 299 | draw: { |
293 | value: function() { | 300 | value: function() { |
294 | this.titleElement.innerHTML = this.title; | 301 | this.titleElement.innerHTML = this.title; |