git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
97ea474
)
quick fix for JSMin build
author
Franck Marcia
<franck.marcia@gmail.com>
Mon, 4 Sep 2006 19:58:06 +0000
(19:58 +0000)
committer
Franck Marcia
<franck.marcia@gmail.com>
Mon, 4 Sep 2006 19:58:06 +0000
(19:58 +0000)
build/js/jsmin.js
patch
|
blob
|
history
diff --git
a/build/js/jsmin.js
b/build/js/jsmin.js
index
1ef29cf
..
3e1ff07
100644
(file)
--- a/
build/js/jsmin.js
+++ b/
build/js/jsmin.js
@@
-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;
}