mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-26 16:30:55 +00:00
a36b0e04d8
* Pulled in MathJax 1.1 (minus the 112 megabytes of PNG "fonts") * Pulled in some of <https://en.wikipedia.org/wiki/User:Nageh/mathJax> bits for initialization This doesn't currently override PNG images, but does replace the text-form if you configure it.
31 lines
861 B
JavaScript
31 lines
861 B
JavaScript
/*
|
|
* /MathJax/unpacked/config/Accessible.js
|
|
*
|
|
* Copyright (c) 2010-11 Design Science, Inc.
|
|
*
|
|
* Part of the MathJax library.
|
|
* See http://www.mathjax.org for details.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0;
|
|
* you may not use this file except in compliance with the License.
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*/
|
|
|
|
MathJax.Hub.Config({
|
|
config: ["MMLorHTML.js"],
|
|
extensions: ["tex2jax.js","mml2jax.js","MathZoom.js","MathMenu.js","toMathML.js","TeX/noErrors.js","TeX/noUndefined.js","TeX/AMSmath.js","TeX/AMSsymbols.js"],
|
|
jax: ["input/TeX","input/MathML","output/HTML-CSS","output/NativeMML"],
|
|
NativeMML: {
|
|
showMathMenuMSIE: false
|
|
},
|
|
menuSettings: {
|
|
zoom: "Double-Click"
|
|
},
|
|
errorSettings: {
|
|
message: ["[Math Error]"]
|
|
}
|
|
});
|
|
|
|
MathJax.Ajax.loadComplete("[MathJax]/config/Accessible.js");
|