added ajax request for conf options to change.php

This commit is contained in:
KasperRT
2014-10-22 21:42:18 +02:00
parent 80f93af4ef
commit 2031f5e660

View File

@@ -14,10 +14,27 @@ function submitAdmin(form)
vote = form.vote.checked,
addSongs = form.addSongs.checked,
longSongs = form.longSongs.checked,
onlyMusic = form.onlyMusic.checked;
frontpage = form.frontPage.checked,
onlyMusic = form.onlyMusic.checked,
removePlay = form.removePlay.checked;
console.log("Vote: "+vote);
console.log("Add Songs: "+addSongs);
console.log("Long Songs: "+longSongs);
console.log("Frontpage: "+frontpage);
console.log("Only music: "+onlyMusic);
console.log("Remove after play:"+removePlay);
conf = $.ajax({
type: "POST",
url: "php/change.php",
async: false,
data: "conf=start&vote="+vote+"&addsongs="+addSongs+"&longsongs="+longSongs+"&frontpage="+frontpage+"&onlymusic="+onlyMusic+"&removeplay="+removePlay,
success: function() {
console.log("configurations response: "+response);
}
}).responseText;
console.log(conf);
}