-
-
Notifications
You must be signed in to change notification settings - Fork 593
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
Preventing multiple modals opening at the same time #810
Comments
Hello there, I am currently facing the same problem. We have registered some hotkeys in our app, with some of them opening modals. Pressing a hotkey multiple times should not open the modal multiple times. Proposed solution(s):1.
|
⬆️ I've asked another modal module's developer whether his module fixes the problem. |
Hi team
I have a button whose
@click
event is attached to a function that does some work, then runsthis.$modal.show(…)
. I want to prevent multiple clicks resulting in multiple modals. I am looking for something likeif (this.$modal.isVisible) …
, but can't find anything like that. Any ideas?Thank you
Matthew
The text was updated successfully, but these errors were encountered: