MediaWiki:Common.js: Difference between revisions

From Wiki The-West EN
Jump to navigation
No edit summary
No edit summary
Line 3: Line 3:


if ($('.item_container').length!==0) {
if ($('.item_container').length!==0) {
console.time('loops');
     $('.item_container').each(function() {
     $('.item_container').each(function() {
         $(this).append('<img src="https://westzz.innogamescdn.com/images/items/' + $(this).attr('data-url') + '">');
         $(this).append('<img src="https://westzz.innogamescdn.com/images/items/' + $(this).attr('data-url') + '">');
$(this).wrap('<a href="/wiki/Template:Item_'+JSON.parse($(this).attr('data-popup'))['id']/1000+'"></a>');
     });
     });
     $('.item_container[data-link]').each(function(){
     $('.item_container[data-link]').each(function(){
Line 12: 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('loop2');
    $('.item_container').each(function() {
       
    });
    console.timeEnd('loop2');
console.timeEnd('loops');
}
}

Revision as of 11:18, 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");
}