Closed GoogleCodeExporter closed 8 years ago
Hey guys I've looked into it a bit further. .preventDefault isn't supported by
internet explorer. this can be sovled by replacing line 98 with
if(!e) var e = window.event;
//e.cancelBubble is supported by IE - this will kill the bubbling process.
e.cancelBubble = true;
e.returnValue = false;
//e.stopPropagation works only in Firefox.
if (e.stopPropagation) {
e.stopPropagation();
e.preventDefault();
}
see http://www.openjs.com/articles/prevent_default_action/ for more info.
Original comment by eck...@gmail.com
on 23 Apr 2010 at 6:33
Original comment by lu...@google.com
on 31 Aug 2010 at 1:45
Original issue reported on code.google.com by
eck...@gmail.com
on 9 Apr 2010 at 7:26