commit 65937e6c4de7594140cb2fa1048bc682e60b09f7
parent b9e3761714f04ba605f4644244ea58f990e7b640
Author: Davide P. Cervone <dpvc@union.edu>
Date: Wed, 15 Apr 2015 10:15:39 -0400
Merge pull request #1165 from dpvc/issue1137
Issue #1137
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/unpacked/extensions/CHTML-preview.js b/unpacked/extensions/CHTML-preview.js
@@ -26,7 +26,7 @@
* limitations under the License.
*/
-(function (HUB,HTML) {
+(function (HUB,HTML,BROWSER) {
var SETTINGS = HUB.config.menuSettings;
@@ -42,7 +42,7 @@
color: "inherit!important",
updateTime: 30, updateDelay: 6,
messageStyle: "none",
- disabled: false
+ disabled: BROWSER.isMSIE && !BROWSER.versionAtLeast("8.0")
}),
//
@@ -133,7 +133,7 @@
HUB.Startup.signal.Post("CHTML-preview Ready");
-})(MathJax.Hub,MathJax.HTML);
+})(MathJax.Hub,MathJax.HTML,MathJax.Hub.Browser);
MathJax.Ajax.loadComplete("[MathJax]/extensions/CHTML-preview.js");