Skip to content

Commit 0740dd4

Browse files
committed
Only set movablelimits for nodes of class OP
1 parent b11a9b1 commit 0740dd4

File tree

1 file changed

+1
-1
lines changed
  • unpacked/jax/input/MathML

1 file changed

+1
-1
lines changed

unpacked/jax/input/MathML/jax.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
var mml, type = node.nodeName.toLowerCase().replace(/^[a-z]+:/,"");
7777
var match = (CLASS.match(/(^| )MJX-TeXAtom-([^ ]*)/));
7878
if (match) {
79-
mml = this.TeXAtom(match[2],!CLASS.match(/MJX-fixedlimits/));
79+
mml = this.TeXAtom(match[2],match[2] === "OP" && !CLASS.match(/MJX-fixedlimits/));
8080
} else if (!(MML[type] && MML[type].isa && MML[type].isa(MML.mbase))) {
8181
MathJax.Hub.signal.Post(["MathML Jax - unknown node type",type]);
8282
return MML.Error(_("UnknownNodeType","Unknown node type: %1",type));

0 commit comments

Comments
 (0)