Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoSot <geo.sotis@gmail.com>2021-10-08 02:55:11 +0300
committerXhmikosR <xhmikosr@gmail.com>2021-11-25 20:23:49 +0300
commitcc3e5789ecba18ccf759b60d90946a1a88ea0fa5 (patch)
treec9fee95548afa8641d5bd96b2c6f136c5f7f8e4b /js/src/modal.js
parent92e664c921ad6b39d9addd7d991a88f3ea6ea7bc (diff)
Remove some uncovered code that seems to be unused
Diffstat (limited to 'js/src/modal.js')
-rw-r--r--js/src/modal.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/js/src/modal.js b/js/src/modal.js
index 16181775a1..c96ad388cc 100644
--- a/js/src/modal.js
+++ b/js/src/modal.js
@@ -40,8 +40,6 @@ const EVENT_SHOWN = `shown${EVENT_KEY}`
const EVENT_RESIZE = `resize${EVENT_KEY}`
const EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY}`
const EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY}`
-const EVENT_MOUSEUP_DISMISS = `mouseup.dismiss${EVENT_KEY}`
-const EVENT_MOUSEDOWN_DISMISS = `mousedown.dismiss${EVENT_KEY}`
const EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`
const CLASS_NAME_OPEN = 'modal-open'
@@ -79,7 +77,6 @@ class Modal extends BaseComponent {
this._backdrop = this._initializeBackDrop()
this._focustrap = this._initializeFocusTrap()
this._isShown = false
- this._ignoreBackdropClick = false
this._isTransitioning = false
this._scrollBar = new ScrollBarHelper()
}
@@ -123,14 +120,6 @@ class Modal extends BaseComponent {
this._toggleEscapeEventListener(true)
this._toggleResizeEventListener(true)
- EventHandler.on(this._dialog, EVENT_MOUSEDOWN_DISMISS, () => {
- EventHandler.one(this._element, EVENT_MOUSEUP_DISMISS, event => {
- if (event.target === this._element) {
- this._ignoreBackdropClick = true
- }
- })
- })
-
this._showBackdrop(() => this._showElement(relatedTarget))
}
@@ -155,9 +144,6 @@ class Modal extends BaseComponent {
this._element.classList.remove(CLASS_NAME_SHOW)
- EventHandler.off(this._element, EVENT_CLICK_DISMISS)
- EventHandler.off(this._dialog, EVENT_MOUSEDOWN_DISMISS)
-
this._queueCallback(() => this._hideModal(), this._element, this._isAnimated())
}
@@ -281,11 +267,6 @@ class Modal extends BaseComponent {
_showBackdrop(callback) {
EventHandler.on(this._element, EVENT_CLICK_DISMISS, event => {
- if (this._ignoreBackdropClick) {
- this._ignoreBackdropClick = false
- return
- }
-
if (event.target !== event.currentTarget) {
return
}