Open GoogleCodeExporter opened 8 years ago
OK...
Around line 76 of record.js , please change
if (console)
to
if (console == undefined)
Then it should be fine.
Original comment by cxcxcxcx@gmail.com
on 16 Jan 2012 at 4:58
Thanks for the detective work! Try the latest version to test the fix.
Original comment by mcgrawian@gmail.com
on 16 Jan 2012 at 5:41
My apologies, it was wrong... This works:
if (window.console !== undefined)
"window." is necessary, and it should be !== instead of ==
An alternative way is:
if (typeof console != 'undefined')
Sorry for the error yesterday...
Original comment by cxcxcxcx@gmail.com
on 16 Jan 2012 at 7:00
Oh, whoops, right. OK, comitted the alternative which lines up more closely
with:
http://stackoverflow.com/questions/519145/how-can-i-check-whether-a-variable-is-
defined-in-javascript
Original comment by mcgrawian@gmail.com
on 16 Jan 2012 at 7:26
Original comment by mcgrawian@gmail.com
on 24 Jan 2012 at 3:28
Thanks!
Original comment by cxcxcxcx@gmail.com
on 24 Jan 2012 at 3:43
I can confirm this with Windows 7 Home Premium 64 bit and IE 9.0.8112.16421.
There is nothing in the console, debugging the page with F12 shows an swfobject
instance, but nothing appears on the screen and calls to any Wami functions
fail with 'Object doesn't support property of method XXXXX'
Original comment by peter.an...@gmail.com
on 12 Jul 2012 at 1:03
Original issue reported on code.google.com by
cxcxcxcx@gmail.com
on 16 Jan 2012 at 4:46