MediaWiki:Common.js: Difference between revisions

From Wiki The-West EN
Jump to navigation
No edit summary
No edit summary
Line 28: Line 28:
     });
     });
}
}
$.getScript('https://cdnjs.cloudflare.com/ajax/libs/stickybits/3.4.1/jquery.stickybits.min.js',function(){$('#right_menu').stickybits();});
$.getScript('https://cdnjs.cloudflare.com/ajax/libs/stickybits/3.4.1/jquery.stickybits.min.js',function(){$('#right_menu').stickybits({stickyBitStickyOffset: 25});});

Revision as of 07:16, 28 July 2018

/* 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') + '">');
    });
    $.getScript("https://wiki.the-west.net/wiki/Popup.js?action=raw");
}

$(window).scroll(function() {
    if ($(this).scrollTop() > 100) {
        $('#back-top').fadeIn();
    } else {
        $('#back-top').fadeOut();
    }
});
// Scroll body to top on click
$('#back-top a').click(function() {
    $('body,html').animate({
        scrollTop: 0
    }, 800);
    return false;
});
// Embed youtube videos
if ($('.youtube_video').length !== 0) {
    $('.youtube_video').each(function() {
        $(this).html('<iframe width="100%" height="100%" src="https://www.youtube.com/embed/' + $(this).attr('data-id') + '?cc_load_policy=1&cc_lang_pref=' + $(this).attr('data-subtitles') + '" frameborder="0" allowfullscreen></iframe>');
    });
}
$.getScript('https://cdnjs.cloudflare.com/ajax/libs/stickybits/3.4.1/jquery.stickybits.min.js',function(){$('#right_menu').stickybits({stickyBitStickyOffset: 25});});