Closed GoogleCodeExporter closed 9 years ago
Short term solution is to not minify that file:
http://code.google.com/p/minify/wiki/CustomSource#Example:_Specify_a_different_m
inifier_or_none_at_all
Does JSMin actually throw an exception or just mangle the output? Can you find
where
the problem is?
Original comment by mrclay....@gmail.com
on 4 May 2010 at 4:49
Result code :
Erreur : invalid increment operand
Fichier Source : http://localhost/project/oktMin/?g=js_admin
Ligne : 59, Colonne : 66
Code Source :
if(!a.id)a.id="dp"+++this.uuid;var
-------------------^
Original comment by for...@gmail.com
on 5 May 2010 at 7:20
The solution is as follows.
Find all occurences of "+ ++" inside the jquery-ui.min file and put () around
the ++
part.
example:
OLD: "ui-tabs-"+ ++u
NEW: "ui-tabs-"+ (++u)
This isn't a fix for why JSMin is breaking, but it does solve the issue. This
ticket
is related http://code.google.com/p/minify/issues/detail?id=144
Original comment by robert.s...@gmail.com
on 5 May 2010 at 7:55
Original comment by mrclay....@gmail.com
on 8 May 2010 at 7:36
Original issue reported on code.google.com by
SmallPar...@gmail.com
on 4 May 2010 at 4:19