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

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

이터널리턴 이스포츠 위키
편집 요약 없음
태그: 되돌려진 기여
편집 요약 없음
태그: 되돌려진 기여
19번째 줄: 19번째 줄:


document.addEventListener("DOMContentLoaded", function() {
document.addEventListener("DOMContentLoaded", function() {
     const arrows = document.querySelectorAll('.CategoryTreeToggle');
     const categoryChildren = document.querySelectorAll('.CategoryTreeChildren');
     arrows.forEach(arrow => {
 
         // aria-expanded가 false인 경우 또는 title이 '펼치기'인 경우에만 클릭하여 펼치기
     categoryChildren.forEach(child => {
        if (arrow.getAttribute('aria-expanded') === 'false' || arrow.title === '펼치기') {
         child.style.display = 'block';
            arrow.click();
        }
     });
     });
});
});

2024년 10월 15일 (화) 02:03 판

/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */
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');
            }
        });
    }
});

document.addEventListener("DOMContentLoaded", function() {
    const categoryChildren = document.querySelectorAll('.CategoryTreeChildren');

    categoryChildren.forEach(child => {
        child.style.display = 'block';
    });
});