Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.js: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
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);
});
});