diff options
Diffstat (limited to 'js/ninja.reel')
-rwxr-xr-x | js/ninja.reel/ninja.html | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/js/ninja.reel/ninja.html b/js/ninja.reel/ninja.html index 3c4a4537..758cd275 100755 --- a/js/ninja.reel/ninja.html +++ b/js/ninja.reel/ninja.html | |||
@@ -196,6 +196,15 @@ | |||
196 | } | 196 | } |
197 | }, | 197 | }, |
198 | 198 | ||
199 | |||
200 | "editorViewOptions": { | ||
201 | "module": "js/code-editor/ui/code-editor-view-options.reel", | ||
202 | "name": "CodeEditorViewOptions", | ||
203 | "properties": { | ||
204 | "element": {"#": "editorViewOptions"} | ||
205 | } | ||
206 | }, | ||
207 | |||
199 | "panelContainer": { | 208 | "panelContainer": { |
200 | "prototype": "js/panels/PanelContainer.reel", | 209 | "prototype": "js/panels/PanelContainer.reel", |
201 | "properties": { | 210 | "properties": { |
@@ -311,6 +320,11 @@ | |||
311 | } | 320 | } |
312 | }, | 321 | }, |
313 | 322 | ||
323 | "codeEditorController": { | ||
324 | "module": "js/controllers/code-editor-controller", | ||
325 | "name": "CodeEditorController" | ||
326 | }, | ||
327 | |||
314 | "owner": { | 328 | "owner": { |
315 | "prototype": "js/ninja.reel", | 329 | "prototype": "js/ninja.reel", |
316 | "properties": { | 330 | "properties": { |
@@ -336,12 +350,16 @@ | |||
336 | "newFileController": {"@": "newFileController"}, | 350 | "newFileController": {"@": "newFileController"}, |
337 | "coreIoApi": {"@": "coreIoApi1"}, | 351 | "coreIoApi": {"@": "coreIoApi1"}, |
338 | "documentBar": {"@": "documentBar"}, | 352 | "documentBar": {"@": "documentBar"}, |
353 | "editorViewOptions": {"@": "editorViewOptions"}, | ||
339 | "ioMediator": {"@": "ioMediator"}, | 354 | "ioMediator": {"@": "ioMediator"}, |
340 | "timeline": {"@": "timeline"}, | 355 | "timeline": {"@": "timeline"}, |
341 | "mainMenuController": {"@": "mainMenuController"}, | 356 | "mainMenuController": {"@": "mainMenuController"}, |
357 | "codeEditorController": {"@": "codeEditorController"}, | ||
342 | "rightPanelContainer": {"#": "rightPanelContainer" }, | 358 | "rightPanelContainer": {"#": "rightPanelContainer" }, |
343 | "panelSplitter": {"@": "splitter3"}, | 359 | "panelSplitter": {"@": "splitter3"}, |
344 | "timelineSplitter": {"@": "splitter4"} | 360 | "timelineSplitter": {"@": "splitter4"}, |
361 | "toolsSplitter": {"@": "splitter2"}, | ||
362 | "optionsSplitter": {"@": "splitter1"} | ||
345 | } | 363 | } |
346 | } | 364 | } |
347 | } | 365 | } |
@@ -399,7 +417,8 @@ | |||
399 | <section id="timelineResizer" class="timelineResizer resizeBar"></section> | 417 | <section id="timelineResizer" class="timelineResizer resizeBar"></section> |
400 | <section id="stateBar"> | 418 | <section id="stateBar"> |
401 | <section id="documentBarContainer"> | 419 | <section id="documentBarContainer"> |
402 | <div id="documentBar" class="documentBar"><a href="#">HTML</a></div> | 420 | <div id="documentBar" class="documentBar" style="display:block"><a href="#">HTML</a></div> |
421 | <div id="editorViewOptions" class="editorViewOptions" style="display:none"><a href="#">HTML</a></div> | ||
403 | </section> | 422 | </section> |
404 | </section> | 423 | </section> |
405 | 424 | ||