-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Second event handler not correctly registered #200
Comments
The issue causing the second item to be skipped is that the previous attributes are being removed while the loop is still running. To fix this, we should wait until after the loop has finished to remove the attributes. Lines 187 to 194 in ca459f0
|
Fixed! |
According to this codepen, v13.0.4 broke this again |
The PR above seems to fix the issue. @cferdinandi any chance you can have a look? thanks |
A recent update reintroduced this bug, unfortunately |
It appears that on an element having more than one event handlers (on* attributes), the second one is not correctly registered but the first and third ones are. I haven't tried with more than 3.
Test case: https://codepen.io/stephanebisson/pen/yLrWgzL?editors=1010
The text was updated successfully, but these errors were encountered: