finished new download page, the build script still hasn't been written

This commit is contained in:
Starbeamrainbowlabs 2015-05-08 14:30:51 +01:00
parent 6d98dc9a33
commit a05edd6138
1 changed files with 10 additions and 1 deletions

View File

@ -73,7 +73,16 @@
}
}
function download()
{
var url = "build.php?web=true&modules=",
checkboxes = document.querySelectorAll("input[type=checkbox]");
for(var i = 0; i < checkboxes.length; i++)
{
url += encodeURIComponent(checkboxes[i].id);
}
location.href = url;
}
</script>
</body>