slimmer 0.1.11
14 Feb 2005
www.issuetrackerproduct.c...wnload/slimmer-0.1.11.tgz
The 0.1.11 release of slimmer fixes a bug in js_slimmer() which caused some showstopping in some cases.
The problem arose on a code like this:
init = function() {
foo();
bar();
}
window.onload = init;
The result became this:
init = function() {
foo();bar();}window.onload = init;
which Firefox couldn't handle. Now, with this next release you get the following result:
init = function() {foo();bar();}
window.onload = init;