diff options
author | Valerio Virgillito | 2012-06-06 00:25:27 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-06-06 00:25:27 -0700 |
commit | 0e1a276f19ea70009c5a649e9667861d7c346a7e (patch) | |
tree | 6db7675bbe89746ba47002bba306da42a7261312 /js/panels/Splitter.js | |
parent | f7e4257745ccd44b8d24555f0ef787429d6e472c (diff) | |
download | ninja-0e1a276f19ea70009c5a649e9667861d7c346a7e.tar.gz |
first iteration of adding serializable to ninja plus other changes to run the latest montage
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/panels/Splitter.js')
-rwxr-xr-x | js/panels/Splitter.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/js/panels/Splitter.js b/js/panels/Splitter.js index f0fb1a45..15865acc 100755 --- a/js/panels/Splitter.js +++ b/js/panels/Splitter.js | |||
@@ -18,8 +18,7 @@ exports.Splitter = Montage.create(Component, { | |||
18 | }, | 18 | }, |
19 | 19 | ||
20 | _panel: { | 20 | _panel: { |
21 | value: null, | 21 | value: null |
22 | enumerable:true | ||
23 | }, | 22 | }, |
24 | 23 | ||
25 | panel: { | 24 | panel: { |
@@ -28,7 +27,8 @@ exports.Splitter = Montage.create(Component, { | |||
28 | }, | 27 | }, |
29 | set: function(value) { | 28 | set: function(value) { |
30 | this._panel = value; | 29 | this._panel = value; |
31 | } | 30 | }, |
31 | serializable: true | ||
32 | }, | 32 | }, |
33 | 33 | ||
34 | _resizeBar: { | 34 | _resizeBar: { |
@@ -41,7 +41,8 @@ exports.Splitter = Montage.create(Component, { | |||
41 | }, | 41 | }, |
42 | set: function(val) { | 42 | set: function(val) { |
43 | this._resizeBar = val; | 43 | this._resizeBar = val; |
44 | } | 44 | }, |
45 | serializable: true | ||
45 | }, | 46 | }, |
46 | 47 | ||
47 | _collapsed : { | 48 | _collapsed : { |