MediaWiki:Common.js: Difference between revisions

From Wiki The-West EN
Jump to navigation
No edit summary
No edit summary
Line 4: Line 4:
if ($('.item_container').length!==0) {
if ($('.item_container').length!==0) {
     $('.item_container').each(function() {
     $('.item_container').each(function() {
         $(this).append('<img src="https://westzz.innogamescdn.com/images/items/' + $(this).attr('data-url') + '">');
         $(this).append('<a href="/wiki/Template:Item_'+$(this).attr('data-id')+'"><img src="https://westzz.innogamescdn.com/images/items/' + $(this).attr('data-url') + '"></a>');
     });
     });
     $('.item_container[data-link]').each(function(){
     $('.item_container[data-link]').each(function(){

Revision as of 11:44, 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('<a href="/wiki/Template:Item_'+$(this).attr('data-id')+'"><img src="https://westzz.innogamescdn.com/images/items/' + $(this).attr('data-url') + '"></a>');
    });
    $('.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");
}