-
Notifications
You must be signed in to change notification settings - Fork 725
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot display 2 dialog boxes back to back #166
Comments
I'm having the same issue. Doing a simple confirm followed by an alert is working: http://jsfiddle.net/QgEpN/2/ But when I do a confirm then an ajax call and then show an alert if does not work: http://jsfiddle.net/QgEpN/1/ |
fabien-d
added a commit
that referenced
this issue
Oct 8, 2013
Fixed with ^. Will be part of |
Available now:
I will be updating the demo page and docs shortly. Closing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If from the callback of an alert dialog box, I trigger a process that brings up another dialog box, the second will display and then hide instantly.
This is because the first one didn't finish hiding. If there was a callback or event when transitionDone is called, then I wouldn't have to kludge my code with a 300ms delay. (I chose 300ms since the transition lasts 250ms.)
The text was updated successfully, but these errors were encountered: