diff options
author | Yukai Huang | 2016-10-08 23:03:33 +0800 |
---|---|---|
committer | Yukai Huang | 2016-10-08 23:03:33 +0800 |
commit | 2b678c1f129abde7e20f471018c55626f57cae97 (patch) | |
tree | a1aebbe491d569ccf3e7ca078485d981a109f232 /public | |
parent | 963a435ae1e9248b42b4665acf106dcffa549678 (diff) |
Make editor variable global
Diffstat (limited to '')
-rw-r--r-- | public/js/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js index 3801eea2..d84d0a8d 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -464,7 +464,7 @@ var fileTypes = { //editor settings var textit = document.getElementById("textit"); if (!textit) throw new Error("There was no textit area!"); -var editor = CodeMirror.fromTextArea(textit, { +window.editor = CodeMirror.fromTextArea(textit, { mode: 'gfm', backdrop: 'gfm', keyMap: "sublime", |