MediaWiki:Common.js: Difference between revisions

From Heroes of Might and Magic: Olden Era Official Wiki
Undo revision 3327 by 76561198021843184 (talk)
Tag: Undo
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 21: Line 21:
     }
     }
   );
   );
});
/* Purge cache button for the toolbox sidebar. */
mw.loader.using('mediawiki.util').then(function () {
    mw.util.addPortletLink(
        'p-tb',
        mw.util.getUrl(null, {
            action: 'purge',
            forcelinkupdate: 1
        }),
        'Update page cache',
        't-purge'
    );
});
/* Load the HeroPlanner logic. */
mw.hook('wikipage.content').add(function () {
    if (mw.config.get('wgPageName').includes('Hero_Planner')) {
        var VERSION = '1'; // Bump this string when you need to ensure no cache
        var scriptUrl = mw.util.wikiScript('index') + '?' + $.param({
            title: 'MediaWiki:HeroPlanner.js',
            action: 'raw',
            ctype: 'text/javascript',
            version: VERSION
        });
        mw.loader.load(scriptUrl);
    }
});
});

Latest revision as of 14:59, 11 September 2026

/* Any JavaScript here will be loaded for all users on every page load. */

$(function() {
  var $box = $('#spellboxv-display');
  $('.spell-link').hover(
    function() {
      var spellName = $(this).data('spell');
      var apiUrl = mw.util.wikiScript('api');
      $.post(apiUrl, {
        action: 'parse',
        format: 'json',
        text: '{{#invoke:SpellTableUtil|spellBoxV|name=' + spellName + '}}',
        contentmodel: 'wikitext'
      }, function(data) {
        var html = data.parse.text['*'];
        $box.html(html).show();
      });
    },
    function() {
      $box.hide().empty();
    }
  );
});

/* Purge cache button for the toolbox sidebar. */

mw.loader.using('mediawiki.util').then(function () {
    mw.util.addPortletLink(
        'p-tb',
        mw.util.getUrl(null, {
            action: 'purge',
            forcelinkupdate: 1
        }),
        'Update page cache',
        't-purge'
    );
});

/* Load the HeroPlanner logic. */
mw.hook('wikipage.content').add(function () {
    if (mw.config.get('wgPageName').includes('Hero_Planner')) {
        var VERSION = '1'; // Bump this string when you need to ensure no cache
        var scriptUrl = mw.util.wikiScript('index') + '?' + $.param({
            title: 'MediaWiki:HeroPlanner.js',
            action: 'raw',
            ctype: 'text/javascript',
            version: VERSION
        });
        mw.loader.load(scriptUrl);
    }
});