This commit is contained in:
darthsandmann
2016-10-16 21:53:15 +02:00
parent 0d10f8b9dc
commit c9f3117da1
412 changed files with 137942 additions and 0 deletions

View File

@ -0,0 +1,16 @@
function neueCharge(){
/*der Server stellt die n<>chste Charge zur Verf<72>gung*/
$.ajax({
dataType: "json",
url: '/chargen',
type: 'NEXT'
})
.done(function(newCharge){
charge_data = eval("(" + newCharge + ")");
los('1');
document.getElementById('los_nr').value = 1;
})
.fail(function(error){
alert("R<>ckgabe von NEXT fehlerhaft");
});
};