This commit is contained in:
LukasNowy
2019-01-28 09:36:52 +01:00
parent 20bacf4bd7
commit 1579c199c3
2 changed files with 8 additions and 8 deletions

View File

@ -7,6 +7,8 @@ $(document).ready(function() {
analyzeUploaded();
});
//AJAX
@ -41,6 +43,10 @@ function movePurchases() {
});
}).catch((error) => console.error("Get id token client error: ", error));}else{console.log("Check Auth error", user)}});
}
$(".test").click(function() {
movePurchases();
});
});
var loading = false;
@ -86,10 +92,4 @@ function updateProgress(percent) {
$(".determinate").css("width", progress.progress * 100 + "%");
}
}
$(".test").click(function() {
movePurchases();
})
}