2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-21 00:44:28 -06:00

Fix variable type

This commit is contained in:
Wes Cossick 2015-06-26 14:44:01 -05:00
parent 3535ee7cd7
commit 6c91d90763

View File

@ -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,