Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralpadev <2838324+alpadev@users.noreply.github.com>2020-12-08 09:16:50 +0300
committerGitHub <noreply@github.com>2020-12-08 09:16:50 +0300
commit85208ae5570aeefe4e94c1ceb29ca3b6ffdf83a1 (patch)
treeaa53633a26516f28ea292749f2389c1708ce2c44 /js/src/dropdown.js
parent07b60d2c3e0744d1a3182228caa0eec42a8328b1 (diff)
Refactor components to use a utility function to define jQuery plugins (#32285)
* refactor: use an utility function to define jQuery plugins * test: add spec for defineJQueryPlugin utility function * Update .bundlewatch.config.json Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Diffstat (limited to 'js/src/dropdown.js')
-rw-r--r--js/src/dropdown.js17
1 files changed, 2 insertions, 15 deletions
diff --git a/js/src/dropdown.js b/js/src/dropdown.js
index 5fcfb4be9b..4720ed1ab9 100644
--- a/js/src/dropdown.js
+++ b/js/src/dropdown.js
@@ -8,8 +8,7 @@
import * as Popper from '@popperjs/core'
import {
- getjQuery,
- onDOMContentLoaded,
+ defineJQueryPlugin,
getElementFromSelector,
isElement,
isVisible,
@@ -490,18 +489,6 @@ EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_FORM_CHILD, e => e.stop
* add .Dropdown to jQuery only if jQuery is present
*/
-onDOMContentLoaded(() => {
- const $ = getjQuery()
- /* istanbul ignore if */
- if ($) {
- const JQUERY_NO_CONFLICT = $.fn[NAME]
- $.fn[NAME] = Dropdown.jQueryInterface
- $.fn[NAME].Constructor = Dropdown
- $.fn[NAME].noConflict = () => {
- $.fn[NAME] = JQUERY_NO_CONFLICT
- return Dropdown.jQueryInterface
- }
- }
-})
+defineJQueryPlugin(NAME, Dropdown)
export default Dropdown