« MediaWiki:Common.js » : différence entre les versions

De Wiki The-West FR
Aller à la navigation
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 2 : Ligne 2 :
if ($('.item_container').length!==0) {
if ($('.item_container').length!==0) {
     $('.item_container').each(function() {
     $('.item_container').each(function() {
    if ($(this).attr('data-url').slice(0,5)=='https'){
        $(this).append('<img src="' + $(this).attr('data-url').replace('westfrs','westfr') + '">');
    } else {
         $(this).append('<img src="https://westfr.innogamescdn.com/images/items/' + $(this).attr('data-url') + '">');
         $(this).append('<img src="https://westfr.innogamescdn.com/images/items/' + $(this).attr('data-url') + '">');
    }
     });
     });
     $('.item_container[data-link]').each(function(){
     $('.item_container[data-link]').each(function(){

Version du 7 juillet 2018 à 15:59

$('.tbbox-logo').wrap('<a href="/wiki/Accueil"></a>');
if ($('.item_container').length!==0) {
    $('.item_container').each(function() {
    if ($(this).attr('data-url').slice(0,5)=='https'){
        $(this).append('<img src="' + $(this).attr('data-url').replace('westfrs','westfr') + '">');
    } else {
        $(this).append('<img src="https://westfr.innogamescdn.com/images/items/' + $(this).attr('data-url') + '">');
    }
    });
    $('.item_container[data-link]').each(function(){
        $(this).find('img').wrap('<a href="'+$(this).attr('data-link')+'"></a>');
    });
    $(function() {
        $.getScript("https://wiki.the-west.fr/wiki/Popup.js?action=raw");
    });
} 
if ($('#navbar').length !== 0) {
    $('#navbar a').removeAttr("title");
}
// 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>');
    });
}