Gwan Is Modifying Jquery.min.js To Error
I am doing an experimental HTML template wich comes with jquery.min.js file - one of the most popular javascript libraries. When I load the template from my local hard drive it wor
Solution 1:
It's a known issue and it will be fixed in next release (soon)
You'll be able to disable minifying directly from a init.c
script in G-WAN v4.10+, this way:
u8 *www_mini = (u8*)get_env(argv, USE_MINIFYING);
if(www_mini)
{
*www_mini = 0;
puts("> disable minifying");
}
You just have to wait for few days for the new v5 release.
Post a Comment for "Gwan Is Modifying Jquery.min.js To Error"