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, {
mode: 'markdown',
theme: 'paper',
tabSize: (options.tabSize != undefined) ? options.tabSize : '2',
tabSize: (options.tabSize != undefined) ? options.tabSize : 2,
indentWithTabs: (options.indentWithTabs === false) ? false : true,
lineNumbers: false,
autofocus: (options.autofocus === true) ? true : false,