> This is not software-related at all, just noticed that the Mono website's
> downloads section ( http://www.go-mono.com/mono-downloads/download.html
> http://www.go-mono.com/mono-downloads/download.html ) doesn't work with
> Internet Explorer...
>
> If you try to click on one platform's icons, it does nothing but brings a
> JavaScript error. Tested with IE7 and IE8 on two computers. Works with
> Firefox.
> Doesn't know who cares but it might harm the project's accessibility...

If anyone cares, this happens due to the following line of code in download.js:

document.getElementById("stable_td" + i).style.removeProperty("background");

IE, in its infinite wisdom, has decided not to support the
removeProperty method and instead has a removeAttribute method.  Or,
you can just set "background" to null or empty string.  Ugh DOM stuff
sucks, but yea this should be fixed.

Mike
_______________________________________________
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to