Files
pretix_cgo/src/pretix/static/pretixcontrol/js/ui/devices.js
Raphael Michel 6d01c99d38 Auth mechanism
2018-09-25 10:28:07 +02:00

15 lines
379 B
JavaScript

/*globals $, Morris, gettext, RRule, RRuleSet*/
$(function () {
var update = function () {
$.getJSON(location.href + '?ajax=true', {}, function (data) {
if (data.initialized) {
location.reload();
} else {
window.setTimeout(update, 500);
}
});
};
window.setTimeout(update, 500);
});