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/properties.reel/section.reel/section.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/properties.reel/section.reel/section.js')
-rwxr-xr-x | js/panels/properties.reel/section.reel/section.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/js/panels/properties.reel/section.reel/section.js b/js/panels/properties.reel/section.reel/section.js index b246c171..1873eb8c 100755 --- a/js/panels/properties.reel/section.reel/section.js +++ b/js/panels/properties.reel/section.reel/section.js | |||
@@ -10,15 +10,18 @@ var Component = require("montage/ui/component").Component; | |||
10 | exports.Section = Montage.create(Component, { | 10 | exports.Section = Montage.create(Component, { |
11 | 11 | ||
12 | name: { | 12 | name: { |
13 | value: "Panel" | 13 | value: "Panel", |
14 | serializable: true | ||
14 | }, | 15 | }, |
15 | 16 | ||
16 | slot: { | 17 | slot: { |
17 | value: null | 18 | value: null, |
19 | serializable: true | ||
18 | }, | 20 | }, |
19 | 21 | ||
20 | content: { | 22 | content: { |
21 | value: null | 23 | value: null, |
24 | serializable: true | ||
22 | }, | 25 | }, |
23 | 26 | ||
24 | prepareForDraw: { | 27 | prepareForDraw: { |