diff options
| author | Chris Rebert <[email protected]> | 2016-05-30 23:42:00 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-05-30 23:42:00 -0700 |
| commit | 5a35ad6d74c8d9e5aa99a1fc255300a8fd2ac0b4 (patch) | |
| tree | 8243d9d8cea3f86624462fc052c8957d7dc6ae6f /js/src/modal.js | |
| parent | 301dc70e1b04fdb70ac8e83a6906b6b27d7d2235 (diff) | |
| download | bootstrap-5a35ad6d74c8d9e5aa99a1fc255300a8fd2ac0b4.tar.xz bootstrap-5a35ad6d74c8d9e5aa99a1fc255300a8fd2ac0b4.zip | |
Use named constants for magic numbers (#19992)
Mostly KeyboardEvent.which and MouseEvent.which values.
[skip validator]
Diffstat (limited to 'js/src/modal.js')
| -rw-r--r-- | js/src/modal.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/src/modal.js b/js/src/modal.js index f52af09a2..2f26bc0d9 100644 --- a/js/src/modal.js +++ b/js/src/modal.js @@ -25,6 +25,7 @@ const Modal = (($) => { const JQUERY_NO_CONFLICT = $.fn[NAME] const TRANSITION_DURATION = 300 const BACKDROP_TRANSITION_DURATION = 150 + const ESCAPE_KEYCODE = 27 // Escape (Esc) key const Default = { backdrop : true, @@ -271,7 +272,7 @@ const Modal = (($) => { _setEscapeEvent() { if (this._isShown && this._config.keyboard) { $(this._element).on(Event.KEYDOWN_DISMISS, (event) => { - if (event.which === 27) { + if (event.which === ESCAPE_KEYCODE) { this.hide() } }) |
