diff options
author | Armen Kesablyan | 2012-06-21 13:54:53 -0700 |
---|---|---|
committer | Armen Kesablyan | 2012-06-21 13:54:53 -0700 |
commit | 8abe69f8d179a3edd2498119ae2947d283c1b758 (patch) | |
tree | 7e507504b875119c364d099d32c95027f05d9f2e /js/panels/objects | |
parent | 18768295f0612b304ddc386752adcbf89be65ced (diff) | |
download | ninja-8abe69f8d179a3edd2498119ae2947d283c1b758.tar.gz |
Binding View - Minor Fixes to remove warnings
Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'js/panels/objects')
-rw-r--r-- | js/panels/objects/object.reel/object.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/panels/objects/object.reel/object.js b/js/panels/objects/object.reel/object.js index 6f8f5c92..1426f800 100644 --- a/js/panels/objects/object.reel/object.js +++ b/js/panels/objects/object.reel/object.js | |||
@@ -16,6 +16,17 @@ exports.Object = Montage.create(Component, { | |||
16 | iconElement : { value: null }, | 16 | iconElement : { value: null }, |
17 | type : { value: null }, | 17 | type : { value: null }, |
18 | 18 | ||
19 | |||
20 | _name : { value: null }, | ||
21 | name: { | ||
22 | get: function() { | ||
23 | return this._name; | ||
24 | }, | ||
25 | set: function(val) { | ||
26 | this.name = val; | ||
27 | } | ||
28 | }, | ||
29 | |||
19 | _sourceObject : { value: null }, | 30 | _sourceObject : { value: null }, |
20 | sourceObject : { | 31 | sourceObject : { |
21 | get: function() { | 32 | get: function() { |