diff options
author | Jon Reid | 2012-06-15 10:10:41 -0700 |
---|---|---|
committer | Jon Reid | 2012-06-15 10:10:41 -0700 |
commit | 526ac54f73d53e1e2a3d6a4dbf4f9992c143baf7 (patch) | |
tree | 65939e59615aaa10a7db77211e71616ad531bd0e /js/ninja.reel | |
parent | b5b760ee82e5cc4da176914983a6002cbf86c11a (diff) | |
parent | 5ee0c89fa0c7acc280ff3b884767e8513fd0b315 (diff) | |
download | ninja-526ac54f73d53e1e2a3d6a4dbf4f9992c143baf7.tar.gz |
Merge remote-tracking branch 'ninja-internal/master' into test-merge
Conflicts:
js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js
js/panels/Timeline/TimelineTrack.reel/TimelineTrack.html
js/panels/Timeline/TimelineTrack.reel/TimelineTrack.js
Diffstat (limited to 'js/ninja.reel')
-rwxr-xr-x | js/ninja.reel/ninja.html | 10 | ||||
-rwxr-xr-x | js/ninja.reel/ninja.js | 187 |
2 files changed, 164 insertions, 33 deletions
diff --git a/js/ninja.reel/ninja.html b/js/ninja.reel/ninja.html index a98fca60..405f57da 100755 --- a/js/ninja.reel/ninja.html +++ b/js/ninja.reel/ninja.html | |||
@@ -163,7 +163,7 @@ | |||
163 | "element": {"#": "stageMode"} | 163 | "element": {"#": "stageMode"} |
164 | }, | 164 | }, |
165 | "bindings" : { | 165 | "bindings" : { |
166 | "livePreview": {"<<->": "@appModel.livePreview"} | 166 | "livePreview": {"<->": "@appModel.livePreview"} |
167 | } | 167 | } |
168 | }, | 168 | }, |
169 | 169 | ||
@@ -246,7 +246,7 @@ | |||
246 | "element":{"#" : "breadCrumbComponent"} | 246 | "element":{"#" : "breadCrumbComponent"} |
247 | }, | 247 | }, |
248 | "bindings" : { | 248 | "bindings" : { |
249 | "container": {"<-": "@owner.currentSelectedContainer"}, | 249 | |
250 | "currentDocument": {"<-": "@documentList.selectedObjects.0"} | 250 | "currentDocument": {"<-": "@documentList.selectedObjects.0"} |
251 | } | 251 | } |
252 | }, | 252 | }, |
@@ -291,9 +291,7 @@ | |||
291 | "selectionController": { | 291 | "selectionController": { |
292 | "prototype": "js/controllers/selection-controller", | 292 | "prototype": "js/controllers/selection-controller", |
293 | "bindings" : { | 293 | "bindings" : { |
294 | "selectionContainer": {"<-": "@owner.currentSelectedContainer"}, | 294 | "currentDocument": {"<-": "@documentList.selectedObjects.0"} |
295 | "currentDocument": {"<-": "@documentList.selectedObjects.0"}, | ||
296 | "selectedElements": {"<-": "@documentList.selectedObjects.0.model.selection"} | ||
297 | } | 295 | } |
298 | }, | 296 | }, |
299 | 297 | ||
@@ -310,7 +308,7 @@ | |||
310 | "selectObjectsOnAddition": true | 308 | "selectObjectsOnAddition": true |
311 | }, | 309 | }, |
312 | "bindings": { | 310 | "bindings": { |
313 | "content": {"<<->": "@documentController.documents"} | 311 | "content": {"<->": "@documentController.documents"} |
314 | } | 312 | } |
315 | }, | 313 | }, |
316 | 314 | ||
diff --git a/js/ninja.reel/ninja.js b/js/ninja.reel/ninja.js index 38f5efcf..61cd2487 100755 --- a/js/ninja.reel/ninja.js +++ b/js/ninja.reel/ninja.js | |||
@@ -15,22 +15,172 @@ var NjUtils = require("js/lib/NJUtils").NJUtils; | |||
15 | 15 | ||
16 | exports.Ninja = Montage.create(Component, { | 16 | exports.Ninja = Montage.create(Component, { |
17 | 17 | ||
18 | ninjaVersion: { | 18 | // SERIALIZABLE Properties |
19 | value: null | 19 | ////////////////////////////// |
20 | rulerTop: { | ||
21 | value: null, | ||
22 | serializable: true | ||
23 | }, | ||
24 | |||
25 | rulerLeft: { | ||
26 | value: null, | ||
27 | serializable: true | ||
28 | }, | ||
29 | |||
30 | appModel: { | ||
31 | value: null, | ||
32 | serializable: true | ||
20 | }, | 33 | }, |
21 | 34 | ||
22 | toolsData: { | 35 | toolsData: { |
23 | value: null | 36 | value: null, |
37 | serializable: true | ||
24 | }, | 38 | }, |
25 | 39 | ||
26 | appData: { | 40 | toolsList: { |
27 | value: AppData | 41 | value: null, |
42 | serializable: true | ||
43 | }, | ||
44 | |||
45 | toolsProperties: { | ||
46 | value: null, | ||
47 | serializable: true | ||
48 | }, | ||
49 | |||
50 | stage: { | ||
51 | value: null, | ||
52 | serializable: true | ||
53 | }, | ||
54 | |||
55 | elementMediator: { | ||
56 | value: null, | ||
57 | serializable: true | ||
58 | }, | ||
59 | |||
60 | dragDropMediator: { | ||
61 | value: null, | ||
62 | serializable: true | ||
63 | }, | ||
64 | |||
65 | undocontroller: { | ||
66 | value: null, | ||
67 | serializable: true | ||
68 | }, | ||
69 | |||
70 | selectionController: { | ||
71 | value: null, | ||
72 | serializable: true | ||
73 | }, | ||
74 | |||
75 | documentController: { | ||
76 | value: null, | ||
77 | serializable: true | ||
78 | }, | ||
79 | |||
80 | popupManager: { | ||
81 | value: null, | ||
82 | serializable: true | ||
83 | }, | ||
84 | |||
85 | colorController: { | ||
86 | value: null, | ||
87 | serializable: true | ||
88 | }, | ||
89 | |||
90 | stylesController: { | ||
91 | value: null, | ||
92 | serializable: true | ||
93 | }, | ||
94 | |||
95 | presetsController: { | ||
96 | value: null, | ||
97 | serializable: true | ||
98 | }, | ||
99 | |||
100 | filePickerController: { | ||
101 | value: null, | ||
102 | serializable: true | ||
103 | }, | ||
104 | |||
105 | newFileController: { | ||
106 | value: null, | ||
107 | serializable: true | ||
108 | }, | ||
109 | |||
110 | coreIoApi: { | ||
111 | value: null, | ||
112 | serializable: true | ||
113 | }, | ||
114 | |||
115 | documentBar: { | ||
116 | value: null, | ||
117 | serializable: true | ||
118 | }, | ||
119 | |||
120 | editorViewOptions: { | ||
121 | value: null, | ||
122 | serializable: true | ||
123 | }, | ||
124 | |||
125 | ioMediator: { | ||
126 | value: null, | ||
127 | serializable: true | ||
128 | }, | ||
129 | |||
130 | timeline: { | ||
131 | value: null, | ||
132 | serializable: true | ||
133 | }, | ||
134 | |||
135 | mainMenuController: { | ||
136 | value: null, | ||
137 | serializable: true | ||
138 | }, | ||
139 | |||
140 | codeEditorController: { | ||
141 | value: null, | ||
142 | serializable: true | ||
143 | }, | ||
144 | |||
145 | rightPanelContainer: { | ||
146 | value: null, | ||
147 | serializable: true | ||
148 | }, | ||
149 | |||
150 | panelSplitter: { | ||
151 | value: null, | ||
152 | serializable: true | ||
153 | }, | ||
154 | |||
155 | timelineSplitter: { | ||
156 | value: null, | ||
157 | serializable: true | ||
158 | }, | ||
159 | |||
160 | toolsSplitter: { | ||
161 | value: null, | ||
162 | serializable: true | ||
163 | }, | ||
164 | |||
165 | optionsSplitter: { | ||
166 | value: null, | ||
167 | serializable: true | ||
28 | }, | 168 | }, |
29 | 169 | ||
30 | documentList: { | 170 | documentList: { |
171 | value: null, | ||
172 | serializable: true | ||
173 | }, | ||
174 | ////////////////////////////// | ||
175 | |||
176 | ninjaVersion: { | ||
31 | value: null | 177 | value: null |
32 | }, | 178 | }, |
33 | 179 | ||
180 | appData: { | ||
181 | value: AppData | ||
182 | }, | ||
183 | |||
34 | currentDocument: { | 184 | currentDocument: { |
35 | get: function() { | 185 | get: function() { |
36 | if(this.documentList.selectedObjects) { | 186 | if(this.documentList.selectedObjects) { |
@@ -147,21 +297,6 @@ exports.Ninja = Montage.create(Component, { | |||
147 | value: [] | 297 | value: [] |
148 | }, | 298 | }, |
149 | 299 | ||
150 | _currentSelectedContainer: { | ||
151 | value: null | ||
152 | }, | ||
153 | |||
154 | currentSelectedContainer: { | ||
155 | get: function() { | ||
156 | return this._currentSelectedContainer; | ||
157 | }, | ||
158 | set: function(value) { | ||
159 | if(value !== this._currentSelectedContainer) { | ||
160 | this._currentSelectedContainer = value; | ||
161 | } | ||