File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2334,9 +2334,12 @@ MathJax.Hub.Startup = {
2334
2334
isMac : ( navigator . platform . substr ( 0 , 3 ) === "Mac" ) ,
2335
2335
isPC : ( navigator . platform . substr ( 0 , 3 ) === "Win" ) ,
2336
2336
isMSIE : ( window . ActiveXObject != null && window . clipboardData != null ) ,
2337
- isFirefox : ( window . netscape != null && document . ATTRIBUTE_NODE != null && ! window . opera ) ,
2337
+ /*
2338
+ isFirefox: ((window.netscape != null || window.mozPaintCount != null) &&
2339
+ document.ATTRIBUTE_NODE != null && !window.opera),
2338
2340
isSafari: (navigator.userAgent.match(/ (Apple)?WebKit\//) != null &&
2339
2341
(!window.chrome || window.chrome.loadTimes == null)),
2342
+ */
2340
2343
isChrome : ( window . chrome != null && window . chrome . loadTimes != null ) ,
2341
2344
isOpera : ( window . opera != null && window . opera . version != null ) ,
2342
2345
isKonqueror : ( window . hasOwnProperty && window . hasOwnProperty ( "konqueror" ) && navigator . vendor == "KDE" ) ,
Original file line number Diff line number Diff line change 292
292
293
293
hideProcessedMath : true , // use display:none until all math is processed
294
294
295
- Font : null , // created by Config() below
295
+ Font : null , // created by Config() below
296
296
webFontDefault : "MathJax_Blank" ,
297
+ allowWebFonts : "otf" , // assume browser can use OTF web fonts
297
298
298
299
Config : function ( ) {
299
300
if ( ! this . require ) { this . require = [ ] }
You can’t perform that action at this time.
0 commit comments