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
It is proposed to consider using arrays as a way to pass conjunction criteria for subscription filtering.
// Unsubscribes both _onEvent1 and _onEvent2
this.$$off([this._onEvent1, this._onEvent2]);
// Unsubscribes all click an keydown events
this.$$off(['click', 'keydown']);
The text was updated successfully, but these errors were encountered:
It is proposed to consider using arrays as a way to pass conjunction criteria for subscription filtering.
The text was updated successfully, but these errors were encountered: