[Mono-list] Site downloads section incompatible with IE

2011-01-05 Thread Tarnyko

Hello,

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...
-- 
View this message in context: 
http://mono.1490590.n4.nabble.com/Site-downloads-section-incompatible-with-IE-tp3175156p3175156.html
Sent from the Mono - General mailing list archive at Nabble.com.
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Site downloads section incompatible with IE

2011-01-05 Thread Mike Christensen
 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