미디어위키:Minerva.js: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
Resultofunion (토론 | 기여) 편집 요약 없음 태그: 모바일 편집 모바일 웹 편집 |
Resultofunion (토론 | 기여) 편집 요약 없음 |
||
| 1번째 줄: | 1번째 줄: | ||
/* All JavaScript here will be loaded for users of the MinervaNeue skin */ | /* All JavaScript here will be loaded for users of the MinervaNeue skin */ | ||
document.querySelectorAll('. | document.querySelectorAll('.cog-box-title').forEach(function (title) { | ||
title.addEventListener('click', function() { | |||
this.classList.toggle('open'); | |||
}); | }); | ||
}); | }); | ||
2022년 1월 12일 (수) 16:48 판
/* All JavaScript here will be loaded for users of the MinervaNeue skin */
document.querySelectorAll('.cog-box-title').forEach(function (title) {
title.addEventListener('click', function() {
this.classList.toggle('open');
});
});