aboutsummaryrefslogtreecommitdiff
path: root/js/panels/binding/binding-item.reel/binding-item.js
diff options
context:
space:
mode:
authorEric Guzman2012-06-01 12:53:24 -0700
committerEric Guzman2012-06-01 12:53:24 -0700
commit0f59ef2a4b78fbcee402255857e8355a67fa7e66 (patch)
treed0369ea70d15c9ba4ff03f0945969206882091ca /js/panels/binding/binding-item.reel/binding-item.js
parent50ea77b261e1b3676aea2b1ed582d5e6c97a0997 (diff)
downloadninja-0f59ef2a4b78fbcee402255857e8355a67fa7e66.tar.gz
Bindings Panel - Update binding panel components
Diffstat (limited to 'js/panels/binding/binding-item.reel/binding-item.js')
-rw-r--r--js/panels/binding/binding-item.reel/binding-item.js64
1 files changed, 63 insertions, 1 deletions
diff --git a/js/panels/binding/binding-item.reel/binding-item.js b/js/panels/binding/binding-item.reel/binding-item.js
index 9365da65..bda62ef3 100644
--- a/js/panels/binding/binding-item.reel/binding-item.js
+++ b/js/panels/binding/binding-item.reel/binding-item.js
@@ -9,8 +9,70 @@ var Montage = require("montage/core/core").Montage,
9 9
10 10
11exports.BindingItem = Montage.create(Component, { 11exports.BindingItem = Montage.create(Component, {
12 sourceObjectLabel : { value: null },
13 boundObjectLabel : { value: null },
12 14
13 sourceObjectPropertyPath : { value: null }, 15 _sourceObject : { value: null },
16 sourceObject : {
17 get: function() {
18 return this._sourceObject;
19 },
20 set: function(value) {
21 if(value === this._sourceObject) { return; }
22
23 this.sourceObjectLabel = value.identifier;
24
25 this._sourceObject = value;
26 }
27 },
28 _boundObject : { value: null },
29 boundObject : {
30 get: function() {
31 return this._boundObject;
32 },
33 set: function(value) {
34 if(value === this._boundObject) { return; }
35
36 this.boundObjectLabel = value.identifier;
37
38 this._boundObject = value;
39 }
40 },
41
42 _sourceObjectPropertyPath : { value: null },
43 sourceObjectPropertyPath : {
44 get: function() {
45 return this._sourceObjectPropertyPath;
46 },
47 set: function(value) {
48 if(value === this._sourceObjectPropertyPath) { return; }
49 this._sourceObjectPropertyPath = value;
50 this.needsDraw = true;
51 }
52 },
53 _boundObjectPropertyPath : { value: null },
54 boundObjectPropertyPath : {
55 get: function() {
56 return this._boundObjectPropertyPath;
57 },
58 set: function(value) {
59 if(value === this._boundObjectPropertyPath) { return; }
60 this._boundObjectPropertyPath = value;
61 this.needsDraw = true;
62 }
63 },
64
65 _oneway : { value: null },
66 oneway : {
67 get: function() {
68 return this._oneway;
69 },
70 set: function(value) {
71 if(value === this._oneway) { return; }
72 this._oneway = value;
73 this.needsDraw = true;
74 }
75 },
14 76
15 templateDidLoad : { 77 templateDidLoad : {
16 value: function() { 78 value: function() {