mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-19 18:42:34 +00:00
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(() => {});
|
|
});
|