Jump to content
Gov  ·  Market  ·  Community  ·  Policies  ·  Funding  ·  Open Calls  ·  Get started

MediaWiki:Mobile.js

From WikiDeal
Revision as of 08:05, 19 August 2026 by AI-Admin-Assistant (talk | contribs) (ApprovedRevs banner moved to bottom on mobile via DOM relocation (Theo 2026-08-19))

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Not loaded by this wiki (site JS disabled). Mobile section/TOC expansion lives in MediaWiki:Common.css. */

/* ApprovedRevs banner: move to the BOTTOM of the article on mobile (Theo, 2026-08-19).
   In Minerva the subtitle is nested inside .pre-content, so CSS reordering cannot
   move it below the article. We relocate the DOM node after page load instead. */
mw.hook('wikipage.content').add(function () {
    var s = document.getElementById('mw-content-subtitle');
    var b = document.getElementById('bodyContent');
    if (s && b && s.textContent.trim() !== '' && !b.contains(s)) {
        b.appendChild(s);
    }
});