A second try at fixing the FF callback error. Had the null in the wrong place, and apparently null doesn't do it anyway (though I could have sworn it had worked in testing). In any case, empty object for callback will work.
This commit is contained in:
parent
90e23901cd
commit
4b21f3a8e0
File diff suppressed because one or more lines are too long
|
@ -1925,13 +1925,13 @@ MathJax.Hub.Startup = {
|
||||||
MenuZoom: function () {
|
MenuZoom: function () {
|
||||||
if (!MathJax.Extension.MathMenu) {
|
if (!MathJax.Extension.MathMenu) {
|
||||||
setTimeout(
|
setTimeout(
|
||||||
MathJax.Callback(["Require",MathJax.Ajax,"[MathJax]/extensions/MathMenu.js"],null),
|
MathJax.Callback(["Require",MathJax.Ajax,"[MathJax]/extensions/MathMenu.js",{}]),
|
||||||
1000
|
1000
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (!MathJax.Extension.MathZoom) {
|
if (!MathJax.Extension.MathZoom) {
|
||||||
setTimeout(
|
setTimeout(
|
||||||
MathJax.Callback(["Require",MathJax.Ajax,"[MathJax]/extensions/MathZoom.js"],null),
|
MathJax.Callback(["Require",MathJax.Ajax,"[MathJax]/extensions/MathZoom.js",{}]),
|
||||||
2000
|
2000
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user