replace out of date code to set display attribute
parent
f57b36ec09
commit
0c49e7641c
|
@ -640,7 +640,7 @@ export class Path {
|
||||||
const pointGripContainer = getGripContainerMethod();
|
const pointGripContainer = getGripContainerMethod();
|
||||||
const elements = pointGripContainer.querySelectorAll('*');
|
const elements = pointGripContainer.querySelectorAll('*');
|
||||||
Array.prototype.forEach.call(elements, function(el){
|
Array.prototype.forEach.call(elements, function(el){
|
||||||
el.style.display = 'none';
|
el.setAttribute('display', 'none');
|
||||||
});
|
});
|
||||||
|
|
||||||
const segList = this.elem.pathSegList;
|
const segList = this.elem.pathSegList;
|
||||||
|
|
Loading…
Reference in New Issue