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
If e.preventDefault() is called in a checkbox click handler, and then a property is changed which is bound to a booleanAttribute the binding doesn't work. This is because e.preventDefault will revert the change.
If e.preventDefault() is called in a checkbox click handler, and then a property is changed which is bound to a booleanAttribute the binding doesn't work. This is because e.preventDefault will revert the change.
Proposed fix is to wrap:
https://github.com/AmpersandJS/ampersand-dom-bindings/blob/master/ampersand-dom-bindings.js#L140
in a setTimeout 0 if we're changing the checked attribute.
The text was updated successfully, but these errors were encountered: