aboutsummaryrefslogtreecommitdiff
path: root/js/src/button.js
diff options
context:
space:
mode:
authoralpadev <[email protected]>2020-12-08 07:16:50 +0100
committerGitHub <[email protected]>2020-12-08 08:16:50 +0200
commit85208ae5570aeefe4e94c1ceb29ca3b6ffdf83a1 (patch)
treeaa53633a26516f28ea292749f2389c1708ce2c44 /js/src/button.js
parent07b60d2c3e0744d1a3182228caa0eec42a8328b1 (diff)
downloadbootstrap-85208ae5570aeefe4e94c1ceb29ca3b6ffdf83a1.tar.xz
bootstrap-85208ae5570aeefe4e94c1ceb29ca3b6ffdf83a1.zip
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 <[email protected]>
Diffstat (limited to 'js/src/button.js')
-rw-r--r--js/src/button.js17
1 files changed, 2 insertions, 15 deletions
diff --git a/js/src/button.js b/js/src/button.js
index b50f4c7a2..e0f74b065 100644
--- a/js/src/button.js
+++ b/js/src/button.js
@@ -5,7 +5,7 @@
* --------------------------------------------------------------------------
*/
-import { getjQuery, onDOMContentLoaded } from './util/index'
+import { defineJQueryPlugin } from './util/index'
import Data from './dom/data'
import EventHandler from './dom/event-handler'
import BaseComponent from './base-component'
@@ -90,19 +90,6 @@ EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, event => {
* add .Button to jQuery only if jQuery is present
*/
-onDOMContentLoaded(() => {
- const $ = getjQuery()
- /* istanbul ignore if */
- if ($) {
- const JQUERY_NO_CONFLICT = $.fn[NAME]
- $.fn[NAME] = Button.jQueryInterface
- $.fn[NAME].Constructor = Button
-
- $.fn[NAME].noConflict = () => {
- $.fn[NAME] = JQUERY_NO_CONFLICT
- return Button.jQueryInterface
- }
- }
-})
+defineJQueryPlugin(NAME, Button)
export default Button