|
Post by backspin on Jul 29, 2013 0:32:35 GMT
I had this thing working, and then as I was tweaking, I suddenly started having a problem getting it to run in Chrome. It still works in IE and Firefox, but in Chrome, right after the loading process (the loader works), the error below (in red) occurs. I'm using Chrome's debugger to see the problem and where it occurs. Any ideas what is happening?
function StopBubble(e) { e = GetEvent(e); if (e != null) { if (e.stopPropagation) { e.stopPropagation(); } if (e.preventDefault) { e.preventDefault(); } e.cancelBubble = true; } e.returnValue = false; Uncaught TypeError: Cannot set property 'returnValue' of undefined return false; }
|
|
|
Post by Hippani on Jul 29, 2013 7:55:35 GMT
Hi, we can't seem to reproduce this error. Is there any chance you could send us a .hani project file that causes this?
Info@HippoStudios.co
|
|