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
Up for discussion, but I think we should switch to the scheme we used in the past to add listeners to functions instead of just overriding onBooleanMessage, etc:
// now
sb.onBooleanMessage = myBooleanFunction;
// future
sb.onBooleanMessage( myBooleanFunction );
// OR
sb.addListener( sb.onBooleanMessage, myBooleanFunction );
The text was updated successfully, but these errors were encountered:
Up for discussion, but I think we should switch to the scheme we used in the past to add listeners to functions instead of just overriding onBooleanMessage, etc:
The text was updated successfully, but these errors were encountered: