Skip to content

Commit

Permalink
Updated columnizeText() functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
davestewart committed Jun 25, 2012
1 parent 184a917 commit 821f81c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
{
trace('import ' + packageName + '*;\n');
}
trace(columnize ? Utils.columnizeText(output) : output.replace(/\t/g, ' '));
trace(columnize ? Utils.columnizeText(output, 1) : output.replace(/\t/g, ' '));

// cleanup
$timeline.deleteLayer();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
{
// format
imports = Utils.sort(Utils.getValues(imports), false, true).join('\n');
elements = Utils.columnizeText(elements.join('\n'));
elements = Utils.columnizeText(elements.join('\n'), 1);

// output
clear();
Expand Down

0 comments on commit 821f81c

Please sign in to comment.