forked from MarseyWorld/MarseyWorld
25 lines
459 B
JavaScript
25 lines
459 B
JavaScript
function postToastTrickOrTreat(t, url) {
|
|
const xhr = createXhrWithFormKey(url);
|
|
xhr[0].onload = function() {
|
|
postToastLoadTrickOrTreat(xhr[0])
|
|
};
|
|
xhr[0].send(xhr[1]);
|
|
}
|
|
|
|
function postToastLoadTrickOrTreat(xhr) {
|
|
let data
|
|
try {
|
|
data = JSON.parse(xhr.response)
|
|
}
|
|
catch (e) {
|
|
console.log(e)
|
|
}
|
|
success = xhr.status >= 200 && xhr.status < 300;
|
|
showToast(success, getMessageFromJsonData(success, data));
|
|
|
|
if (data["result"] == 0){
|
|
scare()
|
|
}
|
|
}
|
|
|