move copy files so src has same structure as dist

This commit is contained in:
Felix Schulze
2019-11-08 12:58:48 +01:00
parent 2286ab913f
commit f2ebec54ce
22 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,27 @@
<?php
echo "
<script defer>
";
readfile("https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js");
readfile("https://code.getmdl.io/1.3.0/material.min.js");
readfile("https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/js/materialize.min.js");
readfile("js/calcscript.js");
readfile("js/changeall.js");
readfile("js/sparabetyg.js");
readfile("js/smallScript.js");
echo "
$(document).ready(function() {
$('select').material_select();
});
function updateGrade() {
$('select').material_select('destroy');
window.setTimeout(partB,0);
}
function partB(){
$(document).ready(function() {
$('select').material_select();
});
}
</script>
";