Commit 6795d931 authored by Davis King's avatar Davis King

Made the download button link to zip files when viewed from windows.

parent bf57e86a
...@@ -155,6 +155,17 @@ function BigToggle(node) ...@@ -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;
</script> </script>
<style type="text/css"> <style type="text/css">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment