Sometimes IE complains in EventHandler.js, line 5840, here, inside this 'if' statement
The "throw e;;". One ";" can be erased.
Regards.
Code:
if (isc.Log.supportsOnError) {
var result = handler.call(this, event);
} else {
//var start = isc.timeStamp();
try {
var result = handler.call(this, event);
} catch (e) {
isc.Log._reportJSError(e);
throw e;;
}
//var end = isc.timeStamp();
//if ((end-start) > 2) {
// this.logWarn("dispatch for " + event.type + " took " + (end-start) + "ms");
//}
}
Regards.