Don't load past version 2 (i.e., don't automatically load version 3).

This commit is contained in:
Davide P. Cervone 2017-04-10 19:13:04 -04:00
parent f865b6a83a
commit d49394aca1

View File

@ -95,12 +95,16 @@
if (request.status === 200) {
var json = JSON.parse(request.responseText);
if (json instanceof Array) json = json[0];
setVersion(json[cdn.version]);
loadMathJax(cdn.mathjax + json[cdn.version] + unpacked + '/MathJax.js' + config);
var version = json[cdn.version];
if (version.substr(0,1) === '2') {
setVersion(version);
loadMathJax(cdn.mathjax + json[cdn.version] + unpacked + '/MathJax.js' + config);
return;
}
} else {
Error("Problem aquiring MathJax version: status = " + request.status);
laodDefaultMathJax();
}
laodDefaultMathJax();
}
}
request.open('GET', cdn.api, true);