From: Pierre-Denis Vanduynslager Date: Wed, 12 Apr 2017 13:41:27 +0000 (-0400) Subject: Indent X-Git-Tag: v4.0.0-beta~166^2~96^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=81e12d5715d675b44da4c7d6547583f1d546e491;p=thirdparty%2Fbootstrap.git Indent --- diff --git a/js/src/dropdown.js b/js/src/dropdown.js index d7eebd8c94..fc2908e7dc 100644 --- a/js/src/dropdown.js +++ b/js/src/dropdown.js @@ -29,7 +29,7 @@ const Dropdown = (($) => { const ARROW_UP_KEYCODE = 38 // KeyboardEvent.which value for up arrow key const ARROW_DOWN_KEYCODE = 40 // KeyboardEvent.which value for down arrow key const RIGHT_MOUSE_BUTTON_WHICH = 3 // MouseEvent.which value for the right button (assuming a right-handed mouse) - const REGEXP_KEYDOWN = new RegExp(`${ARROW_UP_KEYCODE}|${ARROW_DOWN_KEYCODE}|${ESCAPE_KEYCODE}`) + const REGEXP_KEYDOWN = new RegExp(`${ARROW_UP_KEYCODE}|${ARROW_DOWN_KEYCODE}|${ESCAPE_KEYCODE}`) const Event = { HIDE : `hide${EVENT_KEY}`,