diff options
author | Eric Guzman | 2012-06-20 09:29:12 -0700 |
---|---|---|
committer | Eric Guzman | 2012-06-20 09:29:12 -0700 |
commit | e0dc3ff089904653edcf1668e537e1285fd00458 (patch) | |
tree | cd04411fcb7888d1eedaf4aca74737dbd54d5dbe /js/stage/binding-view.reel/binding-hud.reel | |
parent | 4bce228aa425fc9b6b9db59518275d248405ed9e (diff) | |
parent | e506b93b285a1666999afe7cf65317cb6552db03 (diff) | |
download | ninja-e0dc3ff089904653edcf1668e537e1285fd00458.tar.gz |
Merge branch 'binding' of github.com:dhg637/ninja-internal into binding
Diffstat (limited to 'js/stage/binding-view.reel/binding-hud.reel')
-rwxr-xr-x | js/stage/binding-view.reel/binding-hud.reel/binding-hud.css | 2 | ||||
-rwxr-xr-x | js/stage/binding-view.reel/binding-hud.reel/binding-hud.js | 9 |
2 files changed, 9 insertions, 2 deletions
diff --git a/js/stage/binding-view.reel/binding-hud.reel/binding-hud.css b/js/stage/binding-view.reel/binding-hud.reel/binding-hud.css index 76b8e37e..f15f1e50 100755 --- a/js/stage/binding-view.reel/binding-hud.reel/binding-hud.css +++ b/js/stage/binding-view.reel/binding-hud.reel/binding-hud.css | |||
@@ -46,7 +46,7 @@ | |||
46 | cursor: pointer; | 46 | cursor: pointer; |
47 | } | 47 | } |
48 | 48 | ||
49 | .hudOption.bound, .bindingHud .hudOption.bound { | 49 | .bindingHud .hudOption.bound .connectorBubble { |
50 | background: -webkit-linear-gradient(top, #d0e4f7 0%,#73b1e7 24%,#0a77d5 50%,#539fe1 79%,#87bcea 100%); | 50 | background: -webkit-linear-gradient(top, #d0e4f7 0%,#73b1e7 24%,#0a77d5 50%,#539fe1 79%,#87bcea 100%); |
51 | } | 51 | } |
52 | 52 | ||
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 b03c5a06..fddce11c 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 | |||
@@ -20,6 +20,10 @@ exports.BindingHud = Montage.create(Component, { | |||
20 | value: null | 20 | value: null |
21 | }, | 21 | }, |
22 | 22 | ||
23 | boundProperties: { | ||
24 | value: [] | ||
25 | }, | ||
26 | |||
23 | _userComponent: { value: null }, | 27 | _userComponent: { value: null }, |
24 | userComponent: { | 28 | userComponent: { |
25 | get: function() { | 29 | get: function() { |
@@ -32,6 +36,9 @@ exports.BindingHud = Montage.create(Component, { | |||
32 | this.x = val.element.offsetLeft; | 36 | this.x = val.element.offsetLeft; |
33 | this.y = val.element.offsetTop; | 37 | this.y = val.element.offsetTop; |
34 | this.properties = this.application.ninja.objectsController.getPropertiesFromObject(val, true); | 38 | this.properties = this.application.ninja.objectsController.getPropertiesFromObject(val, true); |
39 | this.application.ninja.objectsController.getObjectBindings(this.userComponent).forEach(function(obj) { | ||
40 | this.boundProperties.push(obj.sourceObjectPropertyPath); | ||
41 | }.bind(this)); | ||
35 | this.needsDraw = true; | 42 | this.needsDraw = true; |
36 | } | 43 | } |
37 | } | 44 | } |
@@ -133,7 +140,7 @@ exports.BindingHud = Montage.create(Component, { | |||
133 | // } | 140 | // } |
134 | // this.properties.push({"title":obj, "bound": objBound}); | 141 | // this.properties.push({"title":obj, "bound": objBound}); |
135 | // }.bind(this)); | 142 | // }.bind(this)); |
136 | this.parentComponent.parentComponent.handleShowBinding(this.application.ninja.objectsController.getObjectBindings(this.userComponent)); | 143 | //this.parentComponent.parentComponent.handleShowBinding(this.application.ninja.objectsController.getObjectBindings(this.userComponent)); |
137 | } | 144 | } |
138 | }, | 145 | }, |
139 | 146 | ||