mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
var check = function () {
|
|
$.getJSON(location.href + '&ajax=1', function (data, status) {
|
|
if (data.redirect) {
|
|
location.href = data.redirect;
|
|
} else {
|
|
window.setTimeout(check, 500);
|
|
}
|
|
});
|
|
}
|
|
window.setTimeout(check, 500);
|