We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec37f6 commit 814045aCopy full SHA for 814045a
unpacked/jax/output/NativeMML/jax.js
@@ -518,8 +518,10 @@
518
skip = MML.skipAttributes, copy = MML.copyAttributes;
519
if (!this.attrNames) {
520
for (var id in defaults) {if (!skip[id] && !copy[id] && defaults.hasOwnProperty(id)) {
521
- if (this[id] != null && this[id] !== defaults[id])
522
- tag.setAttribute(id,this.NativeMMLattribute(this[id]));
+ if (this[id] != null && this[id] !== defaults[id]) {
+ if (this.Get(id,null,1) !== this[id])
523
+ tag.setAttribute(id,this.NativeMMLattribute(this[id]));
524
+ }
525
}}
526
}
527
for (var i = 0, m = names.length; i < m; i++) {
0 commit comments