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

S.T.E.L.L.A.-WIKI
편집 요약 없음
(문서를 비움)
태그: 비우기
 
1번째 줄: 1번째 줄:
document.addEventListener("DOMContentLoaded", function() {
 
  var customRefs = document.querySelectorAll(".custom-ref");
  customRefs.forEach(function(ref) {
    var refName = ref.getAttribute("id").replace("custom-ref-", "");
    var actualRef = document.querySelector("ref[name='" + refName + "']");
    if (actualRef) {
      ref.setAttribute("data-tooltip", actualRef.innerHTML);
      ref.addEventListener("click", function() {
        actualRef.scrollIntoView();
      });
    }
  });
});

2024년 5월 28일 (화) 05:22 기준 최신판