Make mhchem have a config parameter that can be used to select the new version (when it is available on the CDN) or the old legacy version.

This commit is contained in:
Davide P. Cervone 2016-06-23 20:25:23 -04:00
parent 7523687f4c
commit cdea890e52

View File

@ -26,9 +26,19 @@
*/
MathJax.Extension["TeX/mhchem"] = {
version: "2.6.0"
version: "2.6.0",
config: MathJax.Hub.CombineConfig("TeX.mhchem",{
legacy: true
})
};
if (!MathJax.Extension["TeX/mhchem"].config.legacy) {
MathJax.Callback.Queue(
["Require",MathJax.Ajax,"[Contrib]/mhchem/mhchem.js"],
["loadComplete",MathJax.Ajax,"[MathJax]/extensions/TeX/mhchem.js"]
);
} else {
MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
var TEX = MathJax.InputJax.TeX;
@ -492,3 +502,4 @@ MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
});
MathJax.Ajax.loadComplete("[MathJax]/extensions/TeX/mhchem.js");
}