diff options
Diffstat (limited to 'js/ninja.reel/ninja.html')
-rwxr-xr-x | js/ninja.reel/ninja.html | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/js/ninja.reel/ninja.html b/js/ninja.reel/ninja.html index ead7f576..8332e5f5 100755 --- a/js/ninja.reel/ninja.html +++ b/js/ninja.reel/ninja.html | |||
@@ -214,6 +214,15 @@ | |||
214 | } | 214 | } |
215 | }, | 215 | }, |
216 | 216 | ||
217 | |||
218 | "editorViewOptions": { | ||
219 | "module": "js/code-editor/ui/code-editor-view-options.reel", | ||
220 | "name": "CodeEditorViewOptions", | ||
221 | "properties": { | ||
222 | "element": {"#": "editorViewOptions"} | ||
223 | } | ||
224 | }, | ||
225 | |||
217 | "panelContainer": { | 226 | "panelContainer": { |
218 | "module": "js/panels/PanelContainer.reel", | 227 | "module": "js/panels/PanelContainer.reel", |
219 | "name": "PanelContainer", | 228 | "name": "PanelContainer", |
@@ -348,6 +357,11 @@ | |||
348 | } | 357 | } |
349 | }, | 358 | }, |
350 | 359 | ||
360 | "codeEditorController": { | ||
361 | "module": "js/controllers/code-editor-controller", | ||
362 | "name": "CodeEditorController" | ||
363 | }, | ||
364 | |||
351 | "owner": { | 365 | "owner": { |
352 | "module": "js/ninja.reel", | 366 | "module": "js/ninja.reel", |
353 | "name": "Ninja", | 367 | "name": "Ninja", |
@@ -374,9 +388,11 @@ | |||
374 | "newFileController": {"@": "newFileController"}, | 388 | "newFileController": {"@": "newFileController"}, |
375 | "coreIoApi": {"@": "coreIoApi1"}, | 389 | "coreIoApi": {"@": "coreIoApi1"}, |
376 | "documentBar": {"@": "documentBar"}, | 390 | "documentBar": {"@": "documentBar"}, |
391 | "editorViewOptions": {"@": "editorViewOptions"}, | ||
377 | "ioMediator": {"@": "ioMediator"}, | 392 | "ioMediator": {"@": "ioMediator"}, |
378 | "timeline": {"@": "timeline"}, | 393 | "timeline": {"@": "timeline"}, |
379 | "mainMenuController": {"@": "mainMenuController"}, | 394 | "mainMenuController": {"@": "mainMenuController"}, |
395 | "codeEditorController": {"@": "codeEditorController"}, | ||
380 | "rightPanelContainer": {"#": "rightPanelContainer" }, | 396 | "rightPanelContainer": {"#": "rightPanelContainer" }, |
381 | "panelSplitter": {"@": "splitter3"}, | 397 | "panelSplitter": {"@": "splitter3"}, |
382 | "timelineSplitter": {"@": "splitter4"} | 398 | "timelineSplitter": {"@": "splitter4"} |
@@ -437,7 +453,8 @@ | |||
437 | <section id="timelineResizer" class="timelineResizer resizeBar"></section> | 453 | <section id="timelineResizer" class="timelineResizer resizeBar"></section> |
438 | <section id="stateBar"> | 454 | <section id="stateBar"> |
439 | <section id="documentBarContainer"> | 455 | <section id="documentBarContainer"> |
440 | <div id="documentBar" class="documentBar"><a href="#">HTML</a></div> | 456 | <div id="documentBar" class="documentBar" style="display:block"><a href="#">HTML</a></div> |
457 | <div id="editorViewOptions" class="editorViewOptions" style="display:none"><a href="#">HTML</a></div> | ||
441 | </section> | 458 | </section> |
442 | </section> | 459 | </section> |
443 | 460 | ||