MediaWiki:Common.js: Difference between revisions

From Wiki The-West EN
Jump to navigation
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
$('.tbbox-logo').wrap('<a href="/wiki/Main_Page"></a>');
if ($('.item_container').length!==0) {
if ($('.item_container').length!==0) {
     $('.item_container').each(function() {
     $('.item_container').each(function() {

Revision as of 14:41, 2 December 2017

/* Any JavaScript here will be loaded for all users on every page load. */
$('.tbbox-logo').wrap('<a href="/wiki/Main_Page"></a>');
if ($('.item_container').length!==0) {
    $('.item_container').each(function() {
        $(this).append('<img src="' + $(this).attr('data-url').replace('westzzs','westzz') + '">');
    })
    $('.item_container[data-link]').each(function(){
        $(this).find('img').wrap('<a href="'+$(this).attr('data-link')+'"></a>');
    });
    $(function() {
        $.getScript("https://wiki.the-west.net/wiki/Popup.js?action=raw");
    });
}