Skip to content

Commit

Permalink
Use default value from original script for max_char/maxChar option
Browse files Browse the repository at this point in the history
  • Loading branch information
Infocatcher committed Feb 7, 2013
1 parent bc30e15 commit baaa297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsBeautifier.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ var jsLintHappy = getArg("jsLintHappy", false);
var spaceBeforeConditional = getArg("spaceBeforeConditional", false);
var indentScripts = getArg("indentScripts", "normal");
var unescapeStrings = getArg("unescapeStrings"); // Will use jsBeautifier defaults
var maxChar = getArg("maxChar", 70);
var maxChar = getArg("maxChar"); // Will use jsBeautifier defaults
var unformattedTags = getArg("unformattedTags"); // Will use jsBeautifier defaults
var detectPackers = getArg("detectPackers", true);
var beautifyCSS = getArg("css", false);
Expand Down

0 comments on commit baaa297

Please sign in to comment.