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

DM wiki
둘러보기로 이동 검색으로 이동
(새 문서: →‎이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다.: function waitForMathJax($content) { if (typeof MathJax === 'undefined') { setTimeo...)
 
(차이 없음)

2020년 2월 21일 (금) 12:42 기준 최신판

/* 이 자바스크립트 설정은 모든 문서, 모든 사용자에게 적용됩니다. */

function waitForMathJax($content) {
  if (typeof MathJax === 'undefined') {
    setTimeout(function () { waitForMathJax($content); }, 1000);
  } else {
    MathJax.Hub.Queue(["Typeset", MathJax.Hub, $content[0]]).execute();
  }
}

mw.hook('wikipage.content').add(waitForMathJax);