Side navigation
#13062 closed bug (notabug)
Opened December 15, 2012 06:01PM UTC
Closed December 15, 2012 06:12PM UTC
jQuery 1.8.3 can't be minified with JSmin
Reported by: | salvatore@iovene.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.8.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
JSmin doesn't seem to like comments between "var" and the variable name, so this:
var
foo
foo,
bar
bar;
becomes this:
varfoo,bar
This is a problem with JSmin I suppose, but it's cheap to fix in jQuery.
Sorry, I didn't know how to format code.
This:
becomes this: