Merge pull request #1537 from dpvc/mhchem-opt-in

Make mhchem have a config parameter to select the new version
This commit is contained in:
Davide P. Cervone 2016-08-05 11:21:52 -04:00 committed by GitHub
commit 199badf8e0

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");
}