More actions
No edit summary |
No edit summary Tag: Reverted |
||
| Line 135: | Line 135: | ||
}, 200); | }, 200); | ||
} | } | ||
}); | |||
// Disable Citizen TOC hiding on scroll | |||
mw.hook('wikipage.content').add(function() { | |||
const toc = document.querySelector('.mw-parser-output .mw-toc, .citizen-toc'); | |||
if (!toc) return; | |||
// Clone the current TOC and replace it without scroll listeners | |||
const newToc = toc.cloneNode(true); | |||
toc.replaceWith(newToc); | |||
}); | }); | ||