Changed tabbing i script editor so that it uses four spaces rather than the tab char"

This commit is contained in:
Daniel Xie
2017-05-15 23:37:14 -05:00
parent c0f5f9da9e
commit b8ccddf256
3 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ $(document).keydown(function(event) {
//Enter
if (event.keyCode == 13) {
event.preventDefault();
event.preventDefault(); //Prevent newline from being entered in Script Editor
var command = $('input[class=terminal-input]').val();
if (command.length > 0) {
post("> " + command);