diff --git a/docs/docs/stylesheet.xsl b/docs/docs/stylesheet.xsl index 73e21c550..c57df554f 100644 --- a/docs/docs/stylesheet.xsl +++ b/docs/docs/stylesheet.xsl @@ -155,6 +155,17 @@ function BigToggle(node) } } + +function init_page() +{ + if (navigator.appVersion.indexOf("Win")!=-1) + { + var a = document.getElementById("download_button"); + a.href = a.href.replace("tar.bz2", "zip"); + } +} +window.onload = init_page; +