1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-08 22:56:46 +02:00

Add eslint no-undef rule and resolve errors

This commit is contained in:
Jon Tewksbury
2015-11-03 15:04:26 -08:00
parent 36d20a8514
commit 2d87ec9a64
3 changed files with 6 additions and 3 deletions

View File

@@ -138,7 +138,7 @@ const Modal = (($) => {
$(this._dialog).on(Event.MOUSEDOWN_DISMISS, () => {
$(this._element).one(Event.MOUSEUP_DISMISS, (event) => {
if ($(event.target).is(this._element)) {
that._ignoreBackdropClick = true
this._ignoreBackdropClick = true
}
})
})

View File

@@ -1,3 +1,5 @@
/* global Tether */
import Util from './util'