Hi,
i use the http://closure-compiler.appspot.com/home to compress my code.
MY JS File *EDIT:*
function test_it()
{
// some code
}
MY HTML Code
<div onclick="test_it" />test</div>
My problem is that the compressor rename my function.
When i click (after the compression) on the div i get the error "test_it is not defined". That makes sense coz the function has a new "short" name now.
Is it possible to deactivate "in the Advanced mode" the "rename functions" function? Or is there a other solution?
Thanks in advance!
Peter