Open jfreyre opened 12 years ago
I've pushed a small fix. At the moment, it will convert characters like 'à' in to their utf-8 codes. The biggest issue with that is that it making changes to your JS before submitting it to the compiler. I'll see if I can find a different work around but as far as I can tell, this works for now.
for example... your code of:
$(document).ready(function () { $('div').append('à') });
becomes...
$(document).ready(function () { $('div').append('\u00e0') });
Awaiting a solution to this problem.
With AjaxMin I use a bat file as well. AjaxMin.exe arquivo.js it arquivo.min.js -clobber -enc: in iso-8859-1 -enc: out iso-8859-1
Hi,
I am a french speaker and when I try to minify my files, I get an error about accentued chars like 'à' or 'é'
Here is the exception thrown in the console:
And a sample of script that fail:
Hope it helps... ;)