commit 609d6ca8fc9603da15eae2db259b5e82b3ffb931
parent 2644cbb0d13f1713882824d89b487df68795fe86
Author: Davide P. Cervone <dpvc@union.edu>
Date: Tue, 30 Apr 2013 14:20:45 -0400
Fix mathchoice Core() (should go to selected element, not selected element's Core())
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/unpacked/extensions/TeX/mathchoice.js b/unpacked/extensions/TeX/mathchoice.js
@@ -53,7 +53,7 @@ MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
setTeXclass: function (prev) {return this.selected().setTeXclass(prev)},
isSpacelike: function () {return this.selected().isSpacelike()},
isEmbellished: function () {return this.selected().isEmbellished()},
- Core: function () {return this.selected().Core()},
+ Core: function () {return this.selected()},
CoreMO: function () {return this.selected().CoreMO()},
toHTML: function (span) {
span = this.HTMLcreateSpan(span);