jQuery UI: Two semicolons after logical expression with function wrapper
- by Vincent
I was looking at some jQuery UI code, a found a weird behavior there:
jQuery.ui||(function(a){ /*... */ })(jQuery);;
The logical OR is clear for me, the function wrapper (still searching the correct name for it), too, but why two semicolons?
Thanks in advance
Vincent