10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-03 18:06:06 +02:00
QUESTDB_website/static/js/MathJaxPolyfill.js

10 lines
282 B
JavaScript

function MathJaxPolyfillInit(){
if (!MathJax.typesetPromise) {
var typesetPromise = function() {
return new Promise(function (resolve, reject) {
MathJax.Hub.Queue(["Typeset",MathJax.Hub],[resolve]);
})
}
MathJax.typesetPromise=typesetPromise
}
}