8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
|
/* global NexT, CONFIG */
|
||
|
|
||
|
document.addEventListener('page:loaded', () => {
|
||
|
if (!CONFIG.enableMath) return;
|
||
|
|
||
|
NexT.utils.getScript(CONFIG.katex.copy_tex_js).catch(() => {});
|
||
|
});
|