MediaWiki:Common.js
From BetaHaven Wiki
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.
$(document).ready(function() {
$('a[href*="/User:"], a[href*="index.php?title=User:"]').each(function() {
if ($(this).find('img').length > 0) return;
var username = $(this).attr('href').match(/User:([^&|#/]+)/);
if (!username) return;
var name = decodeURIComponent(username[1]);
var img = $('<img>')
.attr('src', 'https://minotar.net/helm/' + name + '/16')
.css({ width: '16px', height: '16px', verticalAlign: 'middle', marginRight: '4px', imageRendering: 'pixelated' });
$(this).prepend(img);
});
});