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
with this xml: <root> <MyElement>hi<MyElement> <MyElement>bye<MyElement> </root>
and this handlers:
`
xml.on('EndElement: MyElement', (myElement) => {
console.log('detected 1');
});
with this xml:
<root> <MyElement>hi<MyElement> <MyElement>bye<MyElement> </root>
and this handlers:
`
xml.on('EndElement: MyElement', (myElement) => {
console.log('detected 1');
});
xml.on('EndElement: MyElement', (myElement) => {
console.log('detected 2');
});
`
the console will have:
detected 1
detected 2
detected 1
detected 2
The text was updated successfully, but these errors were encountered: