"apps/vscode:/vscode.git/clone" did not exist on "edf2d52666e60683c276d6cb8aa813be942e4cbb"
Commit 6795d931 authored by Davis King's avatar Davis King
Browse files

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

parent bf57e86a
......@@ -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>
<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