This repository was archived by the owner on Nov 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 48
This repository was archived by the owner on Nov 22, 2024. It is now read-only.
Events become visible on popstate #26
Open
Labels
@muan
Description
The following isn't being reliably run on popstate events.
Lines 140 to 145 in 10d72a3
function specifyTimelineEvents() {
const dashboard = document.querySelector('#dashboard .news')
if (!dashboard) return
const observer = new MutationObserver(addMoreSpecificIdentifiers)
observer.observe(dashboard, {subtree: true, childList: true})
}