« 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 13 : Ligne 13 :
if ($('#navbar').length !== 0) {
if ($('#navbar').length !== 0) {
     $('#navbar a').removeAttr("title");
     $('#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>');
    });
}
}

Version du 10 mai 2018 à 12:04

if ($('.item_container').length!==0) {
    $('.item_container').each(function() {
        $(this).append('<img src="' + $(this).attr('data-url').replace('westfrs','westfr') + '">');
    });
    $('.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>');
    });
}