mirror of
https://github.com/nolanlawson/pinafore
synced 2025-02-09 07:58:43 +01:00
10 lines
212 B
JavaScript
10 lines
212 B
JavaScript
export function pageVisibilityObservers (store) {
|
|
if (!process.browser) {
|
|
return
|
|
}
|
|
|
|
document.addEventListener('visibilitychange', () => {
|
|
store.set({ pageVisibilityHidden: document.hidden })
|
|
})
|
|
}
|