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
I am opening a new modal in the event handler for the 'hidden' event of a closing modal. This works fine, however, there is a race with the overlay/backdrop whereby the new modal shows without the backdrop.
The race is the same as described in #30. The order of events:
existing modal is hidden
hidden event is fired
new modal is created
new modal doesn't create overlay due to the check here. This check ensures there aren't two overlays created.
the timeout in hide from the existing modal removes the overlay (here).
PR coming shortly.
The text was updated successfully, but these errors were encountered:
I am opening a new modal in the event handler for the 'hidden' event of a closing modal. This works fine, however, there is a race with the overlay/backdrop whereby the new modal shows without the backdrop.
The race is the same as described in #30. The order of events:
hide
from the existing modal removes the overlay (here).PR coming shortly.
The text was updated successfully, but these errors were encountered: