diff options
author | Valerio Virgillito | 2012-06-27 11:31:33 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-06-27 11:31:33 -0700 |
commit | 8351c3685a6db703d1940817abc71f92ef4e1bd4 (patch) | |
tree | cbc8833317324b2f50935b71bc624daeef5317df /js/document | |
parent | 2ebf3e3ea24d0d580575dfa13d31588dac1de445 (diff) | |
parent | fe30ed959f7066d4884963cd2e9120052ece2333 (diff) | |
download | ninja-8351c3685a6db703d1940817abc71f92ef4e1bd4.tar.gz |
Merge pull request #339 from ananyasen/bugfix-master
fixed code hinting and autocompletion bug
Diffstat (limited to 'js/document')
-rwxr-xr-x | js/document/views/code.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/document/views/code.js b/js/document/views/code.js index c8b2a23e..5467b0f1 100755 --- a/js/document/views/code.js +++ b/js/document/views/code.js | |||
@@ -114,7 +114,7 @@ exports.CodeDocumentView = Montage.create(BaseDocumentView, { | |||
114 | // | 114 | // |
115 | this.textViewContainer.style.display="block"; | 115 | this.textViewContainer.style.display="block"; |
116 | // | 116 | // |
117 | this.editor = this.application.ninja.codeEditorController.createEditor(this, type, file.extension, textDocument); | 117 | this.editor = this.application.ninja.codeEditorWrapper.createEditor(this, type, file.extension, textDocument); |
118 | this.editor.hline = this.editor.setLineClass(0, "activeline"); | 118 | this.editor.hline = this.editor.setLineClass(0, "activeline"); |
119 | } | 119 | } |
120 | }, | 120 | }, |