MediaWiki:Common.js

From Wiki Maui Linux NET
Revision as of 18:54, 1 November 2025 by Ten (talk | contribs)
Jump to navigation Jump to search

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.
/* Any JavaScript here will be loaded for all users on every page load. */
mw.loader.using('mediawiki.util').then(() => {
alert('test');
  try {
    const prefs = JSON.parse(localStorage.getItem('vector-feature-sidebar-pinned-state') || '{}');
    prefs.pinned = true;
    localStorage.setItem('vector-feature-sidebar-pinned-state', JSON.stringify(prefs));

    document.body.classList.add('vector-feature-sidebar-pinned');
  } catch (e) {
    console.warn('Sidebar pin workaround failed', e);
  }
});