MediaWiki:Common.js: Difference between revisions

From Wiki The-West EN
Jump to navigation
No edit summary
No edit summary
Line 5: Line 5:
     $('.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(){

Revision as of 10:49, 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>');
console.time('loop');
if ($('.item_container').length!==0) {
    $('.item_container').each(function() {
        $(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(){
        $(this).wrap('<a href="'+$(this).attr('data-link')+'"></a>');
    });
    $(function() {
        $.getScript("https://wiki.the-west.net/wiki/Popup.js?action=raw");
    });
}
console.timeEnd('loop');