Skip to content

Commit

Permalink
quick fix for JSMin build
Browse files Browse the repository at this point in the history
  • Loading branch information
fmarcia committed Sep 4, 2006
1 parent 97ea474 commit 6346e5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/js/jsmin.js
Expand Up @@ -308,9 +308,9 @@ function jsmin(comment, input, level) {
}

jsmin.oldSize = input.length;
ret = m(input);
jsmin.newSize = ret.length;
var r = m(input);
jsmin.newSize = r.length;

return comment + ret;
return comment + r;

}

0 comments on commit 6346e5d

Please sign in to comment.