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
Binders that remove elements from the DOM should unbind those elements instead of expecting them to unbind the next time they are notified, which adds unnecessary work to the common case of living subscriptions.
I believe this will let the if binder bind simply once, instead of destroying, re-creating, and re-binding DOM nodes every time the if-bound value changes.
The text was updated successfully, but these errors were encountered:
Binders that remove elements from the DOM should unbind those elements instead of expecting them to unbind the next time they are notified, which adds unnecessary work to the common case of living subscriptions.
I believe this will let the
if
binder bind simply once, instead of destroying, re-creating, and re-binding DOM nodes every time theif
-bound value changes.The text was updated successfully, but these errors were encountered: