mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-07-21 08:54:28 -06:00
Fix variable type
This commit is contained in:
parent
3535ee7cd7
commit
6c91d90763
@ -510,7 +510,7 @@ SimpleMDE.prototype.render = function(el) {
|
|||||||
this.codemirror = CodeMirror.fromTextArea(el, {
|
this.codemirror = CodeMirror.fromTextArea(el, {
|
||||||
mode: 'markdown',
|
mode: 'markdown',
|
||||||
theme: 'paper',
|
theme: 'paper',
|
||||||
tabSize: (options.tabSize != undefined) ? options.tabSize : '2',
|
tabSize: (options.tabSize != undefined) ? options.tabSize : 2,
|
||||||
indentWithTabs: (options.indentWithTabs === false) ? false : true,
|
indentWithTabs: (options.indentWithTabs === false) ? false : true,
|
||||||
lineNumbers: false,
|
lineNumbers: false,
|
||||||
autofocus: (options.autofocus === true) ? true : false,
|
autofocus: (options.autofocus === true) ? true : false,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user