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
Exhibit uses events to trigger component initialization. Various scripts bind to an event while loading, using $(document).one("signaling event", response). This means that it is impossible to reinitialize theses scripts, since they only listen for one occurrence of the event. Would the be any drawback to a blanket replacement of .one() by .bind() so repeated triggerings could occur?
The text was updated successfully, but these errors were encountered:
Exhibit uses events to trigger component initialization. Various scripts bind to an event while loading, using $(document).one("signaling event", response). This means that it is impossible to reinitialize theses scripts, since they only listen for one occurrence of the event. Would the be any drawback to a blanket replacement of .one() by .bind() so repeated triggerings could occur?
The text was updated successfully, but these errors were encountered: