Thank you ntomic for your contrib.
I solved a little bug with IE version check (lights doesnt work with IE7)
look for “function smashInit()” at line 458
replace
“if (navigator.userAgent.match(/msie 6/i)) {
return false;
}
“
with
“if (false /*@cc_on || @_jscript_version < 5.7 @*/) {
return false;
}
“
“navigator.userAgent.match(/msie 6/i)” always return true.
Cheers.