From 6c91d90763e660a0b4e1b5e1610d129a03a6bb35 Mon Sep 17 00:00:00 2001 From: Wes Cossick Date: Fri, 26 Jun 2015 14:44:01 -0500 Subject: [PATCH] Fix variable type --- source files/markdownify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source files/markdownify.js b/source files/markdownify.js index 1235b82..421a539 100644 --- a/source files/markdownify.js +++ b/source files/markdownify.js @@ -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,