mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 08:50:07 +00:00
9 lines
233 B
JavaScript
9 lines
233 B
JavaScript
export const onServiceWorkerUpdateReady = () => {
|
|
const answer = window.confirm(
|
|
`This tutorial has been updated. ` +
|
|
`Reload to display the latest version?`
|
|
)
|
|
if (answer === true) {
|
|
window.location.reload()
|
|
}
|
|
} |