Javascript Errors
-
I’ve found some Javascript errors within script.js that causes problems with minification plugins:
Line 14:
var containerId = container.attr( 'id' )
– has a missing semi-colon for termination of that line.Line 203-204:
else
return id;
– missing correct use of braces. Most minification plugins ignore code written in this format. I corrected mine to:else { return id; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Javascript Errors’ is closed to new replies.