commit e8186ee3171274bebe22a4bc72d495aca86b5597
parent 2b5f6103cc5f2fca38f16748240937daf9bc0389
Author: Davide P. Cervone <dpvc@union.edu>
Date: Wed, 27 Jan 2016 14:52:24 -0500
Fix #1259 for \mathop and \operatorname as well.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/unpacked/jax/input/TeX/jax.js b/unpacked/jax/input/TeX/jax.js
@@ -1453,12 +1453,12 @@
Overset: function (name) {
var top = this.ParseArg(name), base = this.ParseArg(name);
- if (base.isa(MML.mo)) base.movablelimits = false;
+ if (base.movablelimits) base.movablelimits = false;
this.Push(MML.mover(base,top));
},
Underset: function (name) {
var bot = this.ParseArg(name), base = this.ParseArg(name);
- if (base.isa(MML.mo)) base.movablelimits = false;
+ if (base.movablelimits) base.movablelimits = false;
this.Push(MML.munder(base,bot));
},