Merge pull request #3 from roryokane/patch-1

Set tab size in text editor to match default HTML
This commit is contained in:
Kyle Drake 2013-06-22 19:04:23 -07:00
commit 8ff5cd4305

View file

@ -114,6 +114,7 @@ javascript:
editor = ace.edit("editor");
setTheme();
editor.getSession().setMode("ace/mode/html");
editor.getSession().setTabSize(2);
editor.setFontSize(14);
editor.setShowPrintMargin(false);
});