미디어위키:Gadget-ArticleToc.js: 두 판 사이의 차이
식물 vs 좀비 위키
새 문서: →MediaWiki:Gadget-ArticleToc.js * 데스크톱/모바일 공통 목차 위치 보정 및 자동 생성: (function () { 'use strict'; function getHeadingText(heading) { var copy = heading.cloneNode(true); var editLinks = copy.querySelectorAll( '.mw-editsection, .mw-editsection-like' ); Array.prototype.forEach.call(editLinks, function (editLink) { editLink.remove(); }); return copy.textContent.replace(/\s+/g, ' ').trim(); } function getHeadings(out... |
편집 요약 없음 |
||
| 163번째 줄: | 163번째 줄: | ||
button.setAttribute('aria-expanded', String(!isOpen)); | button.setAttribute('aria-expanded', String(!isOpen)); | ||
button.textContent = isOpen ? '펼치기' : '접기'; | button.textContent = isOpen ? '펼치기' : '접기'; | ||
list. | list.classList.toggle('is-collapsed', isOpen); | ||
}); | }); | ||
