다른 명령
편집 요약 없음 태그: 되돌려진 기여 |
편집 요약 없음 태그: 되돌려진 기여 |
||
21번째 줄: | 21번째 줄: | ||
const arrows = document.querySelectorAll('.CategoryTreeToggle'); | const arrows = document.querySelectorAll('.CategoryTreeToggle'); | ||
arrows.forEach(arrow => { | arrows.forEach(arrow => { | ||
if (arrow.title === ' | // aria-expanded가 false인 경우 또는 title이 '펼치기'인 경우에만 클릭하여 펼치기 | ||
if (arrow.getAttribute('aria-expanded') === 'false' || arrow.title === '펼치기') { | |||
arrow.click(); | arrow.click(); | ||
} | } | ||
}); | }); | ||
}); | }); |
2024년 10월 15일 (화) 02:00 판
/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */
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 => {
// aria-expanded가 false인 경우 또는 title이 '펼치기'인 경우에만 클릭하여 펼치기
if (arrow.getAttribute('aria-expanded') === 'false' || arrow.title === '펼치기') {
arrow.click();
}
});
});