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>');
$('.tbbox-logo').wrap('<a href="/wiki/Main_Page"></a>');
console.time('loop');
 
if ($('.item_container').length!==0) {
if ($('.item_container').length!==0) {
     $('.item_container').each(function() {
     $('.item_container').each(function() {
Line 10: Line 10:
     });
     });
     $.getScript("https://wiki.the-west.net/wiki/Popup.js?action=raw");
     $.getScript("https://wiki.the-west.net/wiki/Popup.js?action=raw");
    console.time('loop');
     $('.item_container').each(function() {
     $('.item_container').each(function() {
         $(this).wrap('<a href="/wiki/Template:Item_'+JSON.parse($(this).attr('data-popup'))['id']/1000+'"></a>');
         $(this).wrap('<a href="/wiki/Template:Item_'+JSON.parse($(this).attr('data-popup'))['id']/1000+'"></a>');
     });
     });
    console.timeEnd('loop');
}
}
console.timeEnd('loop');

Revision as of 10:55, 26 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="https://westzz.innogamescdn.com/images/items/' + $(this).attr('data-url') + '">');
    });
    $('.item_container[data-link]').each(function(){
        $(this).wrap('<a href="'+$(this).attr('data-link')+'"></a>');
    });
    $.getScript("https://wiki.the-west.net/wiki/Popup.js?action=raw");
    console.time('loop');
    $('.item_container').each(function() {
        $(this).wrap('<a href="/wiki/Template:Item_'+JSON.parse($(this).attr('data-popup'))['id']/1000+'"></a>');
    });
    console.timeEnd('loop');
}