메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

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

이터널리턴 이스포츠 위키
편집 요약 없음
편집 요약 없음
17번째 줄: 17번째 줄:
     }
     }
});
});
// Toggle function for collapsible tables
// Ensure mw-collapsible works as expected
$(document).ready(function() {
$(document).ready(function() {
     // Add a custom toggle button
     // Add the collapsible class to the table and ensure the toggle works
     $('.mw-collapsible').each(function(index) {
     $('.mw-collapsible').makeCollapsible();
        var $table = $(this);
        var button = $('<a href="javascript:void(0)" class="toggleLink">[ 펼치기 · 접기 ]</a>');
       
        button.on('click', function() {
            $table.find('.mw-collapsible-content').toggle();
            if (button.text() === "[ 펼치기 · 접기 ]") {
                button.text("[ 접기 ]");
            } else {
                button.text("[ 펼치기 · 접기 ]");
            }
        });
 
        $table.before(button); // Button placement before table
    });
});
});

2024년 10월 23일 (수) 22:27 판

/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */
document.addEventListener("DOMContentLoaded", function() {
    const logos = document.querySelectorAll('.mw-logo-icon');
    if (logos.length > 0) {
        const htmlElement = document.documentElement;
        const isDarkMode = htmlElement.classList.contains('skin-citizen-dark');

        logos.forEach(logo => {
            if (isDarkMode) {
                // 다크 모드인 경우 _white.png로 사용
                logo.src = logo.src.replace('_black.png', '_white.png');
            } else {
                // 라이트 모드인 경우 _black.png로 사용
                logo.src = logo.src.replace('_white.png', '_black.png');
            }
        });
    }
});
// Ensure mw-collapsible works as expected
$(document).ready(function() {
    // Add the collapsible class to the table and ensure the toggle works
    $('.mw-collapsible').makeCollapsible();
});