diff options
| author | Johann-S <[email protected]> | 2017-10-04 14:15:05 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-10-04 14:15:05 +0200 |
| commit | 133cc321977ce97d5a688bf32aa2917408e48a6c (patch) | |
| tree | 4455010cdddbb1a20787e31cfcf0ae5036507d9b /js/src | |
| parent | 1c24bdeca89e419da5ad2fc819e43fb96a912019 (diff) | |
| parent | be9e6f3638b00c0c79c6fb06a83f6b07edb865c0 (diff) | |
| download | bootstrap-133cc321977ce97d5a688bf32aa2917408e48a6c.tar.xz bootstrap-133cc321977ce97d5a688bf32aa2917408e48a6c.zip | |
Merge pull request #24240 from lucascono/v4-dev
Fix modal when we try to show that modal two times
Diffstat (limited to 'js/src')
| -rw-r--r-- | js/src/modal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/modal.js b/js/src/modal.js index fb787208d..1ea630c41 100644 --- a/js/src/modal.js +++ b/js/src/modal.js @@ -113,7 +113,7 @@ const Modal = (() => { } show(relatedTarget) { - if (this._isTransitioning) { + if (this._isTransitioning || this._isShown) { return } |
