aboutsummaryrefslogtreecommitdiff
path: root/js/src/modal.js
diff options
context:
space:
mode:
authorJohann-S <[email protected]>2018-03-11 16:18:56 +0100
committerXhmikosR <[email protected]>2019-02-20 22:05:45 +0200
commit7eddee286eb76da4d057a59706e4c512206dab45 (patch)
tree5319cd291c015fcec49e2af0cb1c890d0d966927 /js/src/modal.js
parent0263d1742ce8ad25f0f2de30beebae69b2f55f10 (diff)
downloadbootstrap-7eddee286eb76da4d057a59706e4c512206dab45.tar.xz
bootstrap-7eddee286eb76da4d057a59706e4c512206dab45.zip
remove old references to jquery and some fixes
Diffstat (limited to 'js/src/modal.js')
-rw-r--r--js/src/modal.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/src/modal.js b/js/src/modal.js
index 898d1c73d..6da3d25aa 100644
--- a/js/src/modal.js
+++ b/js/src/modal.js
@@ -232,7 +232,7 @@ class Modal {
}
_showElement(relatedTarget) {
- const transition = $(this._element).hasClass(ClassName.FADE)
+ const transition = this._element.classList.contains(ClassName.FADE)
if (!this._element.parentNode ||
this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {
@@ -295,14 +295,14 @@ class Modal {
_setEscapeEvent() {
if (this._isShown && this._config.keyboard) {
- $(this._element).on(Event.KEYDOWN_DISMISS, (event) => {
+ EventHandler.on(this._element, Event.KEYDOWN_DISMISS, (event) => {
if (event.which === ESCAPE_KEYCODE) {
event.preventDefault()
this.hide()
}
})
} else if (!this._isShown) {
- $(this._element).off(Event.KEYDOWN_DISMISS)
+ EventHandler.off(this._element, Event.KEYDOWN_DISMISS)
}
}