You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
after unfilter I still can see the following code in the dom, so, how to remove these ? <filter id="SvgjsFilter1005"><feFlood id="SvgjsFeFlood1000" result="SvgjsFeFlood1000" in="SourceGraphic" flood-opacity="1" flood-color="#4e00b1"></feFlood><feComposite id="SvgjsFeComposite1001" result="SvgjsFeComposite1001" in="SvgjsFeFlood1000" operator="in" in2="SourceGraphic"></feComposite><feGaussianBlur id="SvgjsFeGaussianBlur1002" result="SvgjsFeGaussianBlur1002" in="SvgjsFeComposite1001" stdDeviation="3 3"></feGaussianBlur><feOffset id="SvgjsFeOffset1003" result="SvgjsFeOffset1003" in="SvgjsFeGaussianBlur1002" dy="0" dx="0"></feOffset><feBlend id="SvgjsFeBlend1004" result="SvgjsFeBlend1004" in="SourceGraphic" in2="SvgjsFeOffset1003"></feBlend></filter>
The text was updated successfully, but these errors were encountered:
@webstermobile I also ran into this issue when I tried to remove a filter attached to an image.
You can remove it manually.
constattachedFilter=svgImage.filterer();if(attachedFilter){svgImage.unfilter();// clean up <defs>constfilterIndex=svgImage.defs().index(attachedFilter);svgImage.defs().get(filterIndex).remove();}
after unfilter I still can see the following code in the dom, so, how to remove these ?
<filter id="SvgjsFilter1005"><feFlood id="SvgjsFeFlood1000" result="SvgjsFeFlood1000" in="SourceGraphic" flood-opacity="1" flood-color="#4e00b1"></feFlood><feComposite id="SvgjsFeComposite1001" result="SvgjsFeComposite1001" in="SvgjsFeFlood1000" operator="in" in2="SourceGraphic"></feComposite><feGaussianBlur id="SvgjsFeGaussianBlur1002" result="SvgjsFeGaussianBlur1002" in="SvgjsFeComposite1001" stdDeviation="3 3"></feGaussianBlur><feOffset id="SvgjsFeOffset1003" result="SvgjsFeOffset1003" in="SvgjsFeGaussianBlur1002" dy="0" dx="0"></feOffset><feBlend id="SvgjsFeBlend1004" result="SvgjsFeBlend1004" in="SourceGraphic" in2="SvgjsFeOffset1003"></feBlend></filter>
The text was updated successfully, but these errors were encountered: