We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9e3761 commit 95c00daCopy full SHA for 95c00da
unpacked/extensions/CHTML-preview.js
@@ -26,7 +26,7 @@
26
* limitations under the License.
27
*/
28
29
-(function (HUB,HTML) {
+(function (HUB,HTML,BROWSER) {
30
31
var SETTINGS = HUB.config.menuSettings;
32
@@ -42,7 +42,7 @@
42
color: "inherit!important",
43
updateTime: 30, updateDelay: 6,
44
messageStyle: "none",
45
- disabled: false
+ disabled: ((BROWSER.isMSIE && BROWSER.version < 8) ? true : false)
46
}),
47
48
//
@@ -133,7 +133,7 @@
133
134
HUB.Startup.signal.Post("CHTML-preview Ready");
135
136
-})(MathJax.Hub,MathJax.HTML);
+})(MathJax.Hub,MathJax.HTML,MathJax.Hub.Browser);
137
138
MathJax.Ajax.loadComplete("[MathJax]/extensions/CHTML-preview.js");
139
0 commit comments