diff options
author | Valerio Virgillito | 2012-06-01 00:16:31 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-06-01 00:16:31 -0700 |
commit | 3a3a2351ea2d816bf953cbf76622772f7d64aa8b (patch) | |
tree | 0e26399a2bbf4702aeb30de9a8f46442ca8b99ab /js/ninja.reel/ninja.html | |
parent | 6ae2ff1ce956e518918f65099d052bb42186dc94 (diff) | |
download | ninja-3a3a2351ea2d816bf953cbf76622772f7d64aa8b.tar.gz |
fixing the code editor, closing documents and cleanup of the stage
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/ninja.reel/ninja.html')
-rwxr-xr-x | js/ninja.reel/ninja.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/js/ninja.reel/ninja.html b/js/ninja.reel/ninja.html index 031d68e9..a6422f6e 100755 --- a/js/ninja.reel/ninja.html +++ b/js/ninja.reel/ninja.html | |||
@@ -212,6 +212,9 @@ | |||
212 | "prototype": "js/code-editor/ui/code-editor-view-options.reel", | 212 | "prototype": "js/code-editor/ui/code-editor-view-options.reel", |
213 | "properties": { | 213 | "properties": { |
214 | "element": {"#": "editorViewOptions"} | 214 | "element": {"#": "editorViewOptions"} |
215 | }, | ||
216 | "bindings" : { | ||
217 | "currentDocument": {"<-": "@documentList.selectedObjects.0"} | ||
215 | } | 218 | } |
216 | }, | 219 | }, |
217 | 220 | ||
@@ -349,7 +352,8 @@ | |||
349 | "codeEditorController": { | 352 | "codeEditorController": { |
350 | "prototype": "js/controllers/code-editor-controller", | 353 | "prototype": "js/controllers/code-editor-controller", |
351 | "bindings": { | 354 | "bindings": { |
352 | "currentDocument": {"<-": "@documentList.selectedObjects.0"} | 355 | "currentDocument": {"<-": "@documentList.selectedObjects.0"}, |
356 | "automaticCodeComplete": {"<-": "@editorViewOptions.codeCompleteCheck.disabled"} | ||
353 | } | 357 | } |
354 | }, | 358 | }, |
355 | 359 | ||
@@ -443,8 +447,8 @@ | |||
443 | <section data-montage-id="timelineResizer" class="timelineResizer resizeBar"></section> | 447 | <section data-montage-id="timelineResizer" class="timelineResizer resizeBar"></section> |
444 | <section id="stateBar"> | 448 | <section id="stateBar"> |
445 | <section id="documentBarContainer"> | 449 | <section id="documentBarContainer"> |
446 | <div data-montage-id="documentBar" class="documentBar" style="display:block"><a href="#">HTML</a></div> | 450 | <div data-montage-id="documentBar" class="documentBar" style="display:block"></div> |
447 | <div data-montage-id="editorViewOptions" class="editorViewOptions" style="display:none"><a href="#">HTML</a></div> | 451 | <div data-montage-id="editorViewOptions" class="editorViewOptions" style="display:none"></div> |
448 | </section> | 452 | </section> |
449 | </section> | 453 | </section> |
450 | 454 | ||