10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-22 18:57:38 +02:00

Check if MathJax.typesetPromise exist before define it in the polyfill

This commit is contained in:
Mickaël Véril 2020-04-30 20:31:30 +02:00
parent 8ecb4dbf75
commit 2f213fe691

View File

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