다른 명령
편집 요약 없음 |
편집 요약 없음 태그: 되돌려진 기여 |
||
16번째 줄: | 16번째 줄: | ||
}); | }); | ||
} | } | ||
}); | |||
document.addEventListener("DOMContentLoaded", function() { | |||
const arrows = document.querySelectorAll('.CategoryTreeToggle'); | |||
arrows.forEach(arrow => { | |||
if (arrow.title === 'expand') { | |||
arrow.click(); | |||
} | |||
}); | |||
}); | }); |
2024년 10월 15일 (화) 01:59 판
/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */
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 arrows = document.querySelectorAll('.CategoryTreeToggle');
arrows.forEach(arrow => {
if (arrow.title === 'expand') {
arrow.click();
}
});
});