mirror of
https://github.com/pretix/pretix.git
synced 2026-09-13 16:14:40 +00:00
* ESlint: Ignore vendored and pre-vue code * Format pre-vue code with eslint where possible --------- Co-authored-by: Kara Engelhardt <engelhardt@pretix.eu>
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
const intId = window.setInterval(function () {
|
|
$.get(location.href + '?ajax=1', function (data, _status) {
|
|
if (data === '1') {
|
|
window.clearInterval(intId)
|
|
location.reload()
|
|
}
|
|
})
|
|
}, 500)
|