Merge pull request #1334 from isHarryh/master
fix(view): fix pjax support for mathjaxpull/1335/head
commit
c8542f8136
|
@ -32,11 +32,18 @@
|
|||
// // TODO pace start loading animation
|
||||
// })
|
||||
|
||||
// // Listen for completion of Pjax
|
||||
// document.addEventListener('pjax:complete', function() {
|
||||
// return;
|
||||
// // TODO pace stop loading animation
|
||||
// })
|
||||
// Listen for completion of Pjax
|
||||
document.addEventListener('pjax:complete', () => {
|
||||
// MathJax reload logic
|
||||
if (window.MathJax) {
|
||||
try {
|
||||
window.MathJax.typesetPromise && window.MathJax.typesetPromise();
|
||||
} catch (e) {
|
||||
console.error('MathJax reload error:', e);
|
||||
}
|
||||
}
|
||||
// TODO pace stop loading animation
|
||||
});
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => initPjax());
|
||||
}());
|
||||
|
|
Loading…
Reference in New Issue