diff options
author | Ananya Sen | 2012-04-13 16:51:50 -0700 |
---|---|---|
committer | Ananya Sen | 2012-04-13 16:51:50 -0700 |
commit | c2ec390d42945d2df1aed3f2b7ff3d1aa722fce8 (patch) | |
tree | caff16a00963bbaef55830b406d7da212f4f74d7 /js/ninja.reel | |
parent | 6ffda1a7ebe18adb518eb24a612df22305b050a6 (diff) | |
download | ninja-c2ec390d42945d2df1aed3f2b7ff3d1aa722fce8.tar.gz |
- code editor view options bar
- Checkbox for user to toggle between manually triggered autocomplete and automatic autocomplete
- font zoom hottext
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/ninja.reel')
-rwxr-xr-x | js/ninja.reel/ninja.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/js/ninja.reel/ninja.html b/js/ninja.reel/ninja.html index 5862cf61..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", |
@@ -379,6 +388,7 @@ | |||
379 | "newFileController": {"@": "newFileController"}, | 388 | "newFileController": {"@": "newFileController"}, |
380 | "coreIoApi": {"@": "coreIoApi1"}, | 389 | "coreIoApi": {"@": "coreIoApi1"}, |
381 | "documentBar": {"@": "documentBar"}, | 390 | "documentBar": {"@": "documentBar"}, |
391 | "editorViewOptions": {"@": "editorViewOptions"}, | ||
382 | "ioMediator": {"@": "ioMediator"}, | 392 | "ioMediator": {"@": "ioMediator"}, |
383 | "timeline": {"@": "timeline"}, | 393 | "timeline": {"@": "timeline"}, |
384 | "mainMenuController": {"@": "mainMenuController"}, | 394 | "mainMenuController": {"@": "mainMenuController"}, |
@@ -443,7 +453,8 @@ | |||
443 | <section id="timelineResizer" class="timelineResizer resizeBar"></section> | 453 | <section id="timelineResizer" class="timelineResizer resizeBar"></section> |
444 | <section id="stateBar"> | 454 | <section id="stateBar"> |
445 | <section id="documentBarContainer"> | 455 | <section id="documentBarContainer"> |
446 | <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> | ||
447 | </section> | 458 | </section> |
448 | </section> | 459 | </section> |
449 | 460 | ||