미디어위키:Minerva.js: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
31번째 줄: 31번째 줄:


// 유튜브 썸네일
// 유튜브 썸네일
document.querySelectorAll('iframe').forEach(function(iframe){
document.querySelectorAll('iframe').forEach(function (iframe) {
    var $container = iframe.parentElement;
    var $videoWrap = $container.parentElement;
    if ($videoWrap && $videoWrap.classList.contains('video-wrap')) return;
     iframe.parentElement.classList.add('video-wrap');
     iframe.parentElement.classList.add('video-wrap');
});
});