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
Events.unbind( 'name', this.doesNotExist ); will remove ALL name events. Suggest checking arguments.length in the unbind function to prevent this behavior. Makes for some unexpected problems if you don't catch it.
The text was updated successfully, but these errors were encountered:
Events.unbind( 'name', this.doesNotExist );
will remove ALL name events. Suggest checkingarguments.length
in the unbind function to prevent this behavior. Makes for some unexpected problems if you don't catch it.The text was updated successfully, but these errors were encountered: