diff options
| author | Patrick H. Lauke <[email protected]> | 2016-02-17 15:21:02 +0000 |
|---|---|---|
| committer | Patrick H. Lauke <[email protected]> | 2016-02-17 15:21:02 +0000 |
| commit | 701b12bf5823769e4eae66153755cf1ecd10ead9 (patch) | |
| tree | 1e8d9eff72f32b5ef1ad43075697d7d4066c2440 /js | |
| parent | 3c2692447cf5401e589607a91bf2c940e0e3063d (diff) | |
| download | bootstrap-701b12bf5823769e4eae66153755cf1ecd10ead9.tar.xz bootstrap-701b12bf5823769e4eae66153755cf1ecd10ead9.zip | |
Replace jQuery with vanilla JS
Diffstat (limited to 'js')
| -rw-r--r-- | js/src/button.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/button.js b/js/src/button.js index adcf4c928..39e2b3974 100644 --- a/js/src/button.js +++ b/js/src/button.js @@ -93,7 +93,7 @@ const Button = (($) => { $(this._element).trigger('change') } - $(input).trigger('focus') + input.focus() } } else { |
