aboutsummaryrefslogtreecommitdiff
path: root/js/data
diff options
context:
space:
mode:
authorEric Guzman2012-03-12 15:33:04 -0700
committerEric Guzman2012-03-12 15:33:04 -0700
commit7e3161153b87b891875ac65368a19aed12909fa3 (patch)
treeb80f48d711a9729fc39dbbdff28c4f0620e7302d /js/data
parent7a28932ba8a7517bbaaabe1f5edf678416aafc9c (diff)
parent69d90467865a1384725b2301901be2180c5a841f (diff)
downloadninja-7e3161153b87b891875ac65368a19aed12909fa3.tar.gz
Merge branch 'refs/heads/master' into CSSPanelUpdates
Conflicts: js/panels/PanelContainer/PanelContainer.reel/PanelContainer.js
Diffstat (limited to 'js/data')
-rw-r--r--js/data/panels-data.js116
1 files changed, 116 insertions, 0 deletions
diff --git a/js/data/panels-data.js b/js/data/panels-data.js
new file mode 100644
index 00000000..2422f5e7
--- /dev/null
+++ b/js/data/panels-data.js
@@ -0,0 +1,116 @@
1/* <copyright>
2This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5</copyright> */
6
7var Montage = require("montage/core/core").Montage;
8
9exports.PanelsData = Montage.create(Montage, {
10
11 panels: {
12 value: [
13 {
14 name: "Color",
15 height: 200,
16 minHeight: 200,
17 maxHeight: null,
18 flexible: false,
19 scrollable: false,
20 collapsed: false,
21 open: true,
22 modulePath: "js/panels/Color/colorpanelbase.reel",
23 moduleName: "ColorPanelBase"
24 },
25 {
26 name: "Properties",
27 minHeight: 200,
28 height: 200,
29 maxHeight: null,
30 flexible: true,
31 scrollable: true,
32 collapsed: false,
33 open: true,
34 modulePath: "js/panels/properties.reel",
35 moduleName: "Properties"
36 },
37 {
38 name: "Materials",
39 minHeight: 100,
40 height: 100,
41 maxHeight: null,
42 flexible: true,
43 collapsed: true,
44 scrollable: true,
45 open: true,
46 modulePath: "js/panels/Materials/materials-library-panel.reel",
47 moduleName: "MaterialsLibraryPanel"
48 },
49 {
50 name: "Components",
51 minHeight: 100,
52 height: 200,
53 maxHeight: null,
54 flexible: true,
55 scrollable: true,
56 collapsed: true,
57 open: true,
58 modulePath: "js/panels/Components/ComponentsPanelBase.reel",
59 moduleName: "ComponentsPanelBase"
60 },
61// {
62// name: "Project/Assets",
63// minHeight: 250,
64// height: 250,
65// maxHeight: null,
66// flexible: true,
67// scrollable: true,
68// collapsed: false,
69// open: true,
70// modulePath: "js/panels/Project/projectpanelbase.reel",
71// moduleName: "ProjectPanelBase"
72// },
73 {
74 name: "CSS",
75 minHeight: 195,
76 height: 195,
77 maxHeight: null,
78 flexible: true,
79 scrollable: true,
80 collapsed: true,
81 open: true,
82 modulePath: "js/panels/CSSPanel/CSSPanelBase.reel",
83 moduleName: "CSSPanelBase"
84 },
85 {
86 name: "Presets",
87 minHeight: 100,
88 height: 100,
89 maxHeight: null,
90 flexible: true,
91 collapsed: true,
92 scrollable: true,
93 open: true,
94 modulePath: "js/panels/presets/content.reel",
95 moduleName: "content"
96 }
97 ]
98 }
99
100
101 /*
102 _panelOrder: {
103 value: ["Properties","Color","Components","Project/Assets", "CSS","Materials"]
104 },
105
106 panelOrder: {
107 get: function() {
108 return this._panelOrder;
109 },
110 set: function(val) {
111 this._panelOrder = val;
112 }
113 }
114 */
115
116}); \ No newline at end of file