aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2017-08-11 16:50:08 +0300
committerGitHub <[email protected]>2017-08-11 16:50:08 +0300
commitf8e89c52b5d53ecd76a86b83988e98df8b307522 (patch)
treee1f28852fda33e8cfebc3d9a8a9a36965178d7e1
parent537b5f012771069b182aabab651eff9723d785b0 (diff)
downloadbootstrap-f8e89c52b5d53ecd76a86b83988e98df8b307522.tar.xz
bootstrap-f8e89c52b5d53ecd76a86b83988e98df8b307522.zip
Fix JavaScript case and a typo. (#23320)
-rw-r--r--_includes/callout-danger-async-methods.md2
-rw-r--r--docs/4.0/getting-started/javascript.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/_includes/callout-danger-async-methods.md b/_includes/callout-danger-async-methods.md
index ea08965f6..c354d9c11 100644
--- a/_includes/callout-danger-async-methods.md
+++ b/_includes/callout-danger-async-methods.md
@@ -3,5 +3,5 @@
All API methods are **asynchronous** and start a **transition**. They returns to the caller as soon as the transition is started but **before it ends**. In addition, a method call on a **transitioning component will be ignored**.
-[See our Javascript documentation for more informations.]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/javascript/)
+[See our JavaScript documentation for more information.]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/javascript/)
{% endcallout %}
diff --git a/docs/4.0/getting-started/javascript.md b/docs/4.0/getting-started/javascript.md
index 92891a2ab..b33789b72 100644
--- a/docs/4.0/getting-started/javascript.md
+++ b/docs/4.0/getting-started/javascript.md
@@ -119,6 +119,6 @@ Bootstrap's plugins don't fall back particularly gracefully when JavaScript is d
## Util
-All Bootstrap Javascript depend on `util.js` and it has to be included alongside the other JS files. If you're using the compiled (or minified) `bootstrap.js`, there is no need to include this—it's already there.
+All Bootstrap's JavaScript files depend on `util.js` and it has to be included alongside the other JS files. If you're using the compiled (or minified) `bootstrap.js`, there is no need to include this—it's already there.
`util.js` includes utility functions and a basic helper for `transitionEnd` events as well as a CSS transition emulator. It's used by the other plugins to check for CSS transition support and to catch hanging transitions.