aboutsummaryrefslogtreecommitdiff
path: root/site/docs/4.3/getting-started/javascript.md
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2019-02-19 16:19:02 +0200
committerXhmikosR <[email protected]>2019-02-20 22:05:45 +0200
commit7f7f858cb907da0c67b00cf6fc80f5dc1108cba0 (patch)
tree8e723664a10dc165f47c15653fe754f5f1e96a57 /site/docs/4.3/getting-started/javascript.md
parent1da5b9f76a05feae2663316247937aabda91d487 (diff)
downloadbootstrap-7f7f858cb907da0c67b00cf6fc80f5dc1108cba0.tar.xz
bootstrap-7f7f858cb907da0c67b00cf6fc80f5dc1108cba0.zip
Remove jQuery from docs/repo.
Some of the snippets need to be updated later.
Diffstat (limited to 'site/docs/4.3/getting-started/javascript.md')
-rw-r--r--site/docs/4.3/getting-started/javascript.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/docs/4.3/getting-started/javascript.md b/site/docs/4.3/getting-started/javascript.md
index ebe3842be..9dd61aa55 100644
--- a/site/docs/4.3/getting-started/javascript.md
+++ b/site/docs/4.3/getting-started/javascript.md
@@ -1,7 +1,7 @@
---
layout: docs
title: JavaScript
-description: Bring Bootstrap to life with our optional JavaScript plugins built on jQuery. Learn about each plugin, our data and programmatic API options, and more.
+description: Bring Bootstrap to life with our optional JavaScript plugins. Learn about each plugin, our data and programmatic API options, and more.
group: getting-started
toc: true
---
@@ -14,7 +14,7 @@ If you use a bundler (Webpack, Rollup...), you can use `/js/dist/*.js` files whi
## Dependencies
-Some plugins and CSS components depend on other plugins. If you include plugins individually, make sure to check for these dependencies in the docs. Also note that **all plugins depend on jQuery** (this means jQuery must be included **before** the plugin files). [Consult our `package.json`]({{ site.repo }}/blob/v{{ site.current_version }}/package.json) to see which versions of jQuery are supported.
+Some plugins and CSS components depend on other plugins. If you include plugins individually, make sure to check for these dependencies in the docs.
Our dropdowns, popovers and tooltips also depend on [Popper.js](https://popper.js.org/).
@@ -117,7 +117,7 @@ $.fn.bootstrapBtn = bootstrapButton // give $().bootstrapBtn the Bootstrap funct
## Version numbers
-The version of each of Bootstrap's jQuery plugins can be accessed via the `VERSION` property of the plugin's constructor. For example, for the tooltip plugin:
+The version of each of Bootstrap's plugins can be accessed via the `VERSION` property of the plugin's constructor. For example, for the tooltip plugin:
{% highlight js %}
$.fn.tooltip.Constructor.VERSION // => "{{ site.current_version }}"