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

편집 요약 없음
편집 요약 없음
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('.cog-box-title').forEach(function (title) {
    title.addEventListener('click', function() {
        this.classList.toggle('open');
    });
});