1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-06-01 09:53:02 +00:00

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

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> </script>
</body> </body>