- Avoid erring during resize on encountering MathML (which have no `style`)
parent
30b2f3cfe1
commit
efc3f5aaba
|
@ -1390,6 +1390,9 @@ const mouseDown = function (evt) {
|
||||||
const all = mouseTarget.getElementsByTagName('*'),
|
const all = mouseTarget.getElementsByTagName('*'),
|
||||||
len = all.length;
|
len = all.length;
|
||||||
for (i = 0; i < len; i++) {
|
for (i = 0; i < len; i++) {
|
||||||
|
if (!all[i].style) { // mathML
|
||||||
|
continue;
|
||||||
|
}
|
||||||
all[i].style.vectorEffect = 'non-scaling-stroke';
|
all[i].style.vectorEffect = 'non-scaling-stroke';
|
||||||
if (iswebkit) { delayedStroke(all[i]); }
|
if (iswebkit) { delayedStroke(all[i]); }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue