MediaWiki:Common.js

From CompetenceBase
Revision as of 10:55, 5 August 2024 by Purkertcz (talk | contribs) (Created page with " $(document).ready(function() { // Listen for language changes from the ULS $(document).on('languagechange', function() { // Remove the 'uselang' parameter fro...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After saving, 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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.

$(document).ready(function() {
    // Listen for language changes from the ULS
    $(document).on('languagechange', function() {
        // Remove the 'uselang' parameter from the URL
        var url = new URL(window.location.href);
        url.searchParams.delete('uselang');

        // Use the History API to update the URL without reloading
        window.history.replaceState({}, '', url.toString());
    });

    // Trigger language change when the ULS triggers a language switch
    mw.hook('uls.language.change').add(function() {
        // Manually trigger the language change event
        $(document).trigger('languagechange');
    });
});

Wikidata