aboutsummaryrefslogtreecommitdiff
path: root/views/script/win_quit.js
blob: c8d1af1e282844c2c80044ab250b9f9a8846db25 (plain)
1
2
3
4
5
6
7
setInterval(() => {
    if (require('@electron/remote').getCurrentWindow().controllerAttached) {
        document.getElementById('progress').innerText = lang.win.quit[1];
    } else {
        document.getElementById('progress').innerText = lang.win.quit[0];
    }
}, 100)