From: XhmikosR Date: Tue, 24 Mar 2020 19:42:54 +0000 (+0200) Subject: Fix redirected links. X-Git-Tag: v5.0.0-alpha1~310 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98c45986962f8ab16bc630722e96dbfb048079b3;p=thirdparty%2Fbootstrap.git Fix redirected links. --- diff --git a/site/content/docs/4.3/components/breadcrumb.md b/site/content/docs/4.3/components/breadcrumb.md index 61d9c2a464..a6e953bb53 100644 --- a/site/content/docs/4.3/components/breadcrumb.md +++ b/site/content/docs/4.3/components/breadcrumb.md @@ -32,7 +32,7 @@ group: components ## Changing the separator -Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by changing `$breadcrumb-divider`. The [quote](https://sass-lang.com/documentation/functions/string#quote) function is needed to generate the quotes around a string, so if you want `>` as separator, you can use this: +Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). They can be changed by changing `$breadcrumb-divider`. The [quote](https://sass-lang.com/documentation/modules/string#quote) function is needed to generate the quotes around a string, so if you want `>` as separator, you can use this: ```scss $breadcrumb-divider: quote(">"); diff --git a/site/content/docs/4.3/components/dropdowns.md b/site/content/docs/4.3/components/dropdowns.md index e53dc71ceb..54aad5ce43 100644 --- a/site/content/docs/4.3/components/dropdowns.md +++ b/site/content/docs/4.3/components/dropdowns.md @@ -8,7 +8,7 @@ toc: true ## Overview -Dropdowns are toggleable, contextual overlays for displaying lists of links and more. They're made interactive with the included Bootstrap dropdown JavaScript plugin. They're toggled by clicking, not by hovering; this is [an intentional design decision](http://markdotto.com/2012/02/27/bootstrap-explained-dropdowns/). +Dropdowns are toggleable, contextual overlays for displaying lists of links and more. They're made interactive with the included Bootstrap dropdown JavaScript plugin. They're toggled by clicking, not by hovering; this is [an intentional design decision](https://markdotto.com/2012/02/27/bootstrap-explained-dropdowns/). Dropdowns are built on a third party library, [Popper.js](https://popper.js.org/), which provides dynamic positioning and viewport detection. Be sure to include [popper.min.js]({{< param "cdn.popper" >}}) before Bootstrap's JavaScript or use `bootstrap.bundle.min.js` / `bootstrap.bundle.js` which contains Popper.js. Popper.js isn't used to position dropdowns in navbars though as dynamic positioning isn't required. @@ -828,26 +828,26 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap

Offset of the dropdown relative to its target.

When a function is used to determine the offset, it is called with an object containing the offset data as its first argument. The function must return an object with the same structure. The triggering element DOM node is passed as the second argument.

-

For more information refer to Popper.js's offset docs.

+

For more information refer to Popper.js's offset docs.

flip boolean true - Allow Dropdown to flip in case of an overlapping on the reference element. For more information refer to Popper.js's flip docs. + Allow Dropdown to flip in case of an overlapping on the reference element. For more information refer to Popper.js's flip docs. boundary string | element 'scrollParent' - Overflow constraint boundary of the dropdown menu. Accepts the values of 'viewport', 'window', 'scrollParent', or an HTMLElement reference (JavaScript only). For more information refer to Popper.js's preventOverflow docs. + Overflow constraint boundary of the dropdown menu. Accepts the values of 'viewport', 'window', 'scrollParent', or an HTMLElement reference (JavaScript only). For more information refer to Popper.js's preventOverflow docs. reference string | element 'toggle' - Reference element of the dropdown menu. Accepts the values of 'toggle', 'parent', or an HTMLElement reference. For more information refer to Popper.js's referenceObject docs. + Reference element of the dropdown menu. Accepts the values of 'toggle', 'parent', or an HTMLElement reference. For more information refer to Popper.js's referenceObject docs. display @@ -859,7 +859,7 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap popperConfig null | object null - To change Bootstrap's default Popper.js config, see Popper.js's configuration + To change Bootstrap's default Popper.js config, see Popper.js's configuration diff --git a/site/content/docs/4.3/components/popovers.md b/site/content/docs/4.3/components/popovers.md index 5867ed6fcf..4e42ee0727 100644 --- a/site/content/docs/4.3/components/popovers.md +++ b/site/content/docs/4.3/components/popovers.md @@ -248,20 +248,20 @@ Note that for security reasons the `sanitize`, `sanitizeFn` and `whiteList` opti offset number | string 0 - Offset of the popover relative to its target. For more information refer to Popper.js's offset docs. + Offset of the popover relative to its target. For more information refer to Popper.js's offset docs. fallbackPlacement string | array 'flip' Allow to specify which position Popper will use on fallback. For more information refer to - Popper.js's behavior docs + Popper.js's behavior docs boundary string | element 'scrollParent' - Overflow constraint boundary of the popover. Accepts the values of 'viewport', 'window', 'scrollParent', or an HTMLElement reference (JavaScript only). For more information refer to Popper.js's preventOverflow docs. + Overflow constraint boundary of the popover. Accepts the values of 'viewport', 'window', 'scrollParent', or an HTMLElement reference (JavaScript only). For more information refer to Popper.js's preventOverflow docs. sanitize @@ -285,7 +285,7 @@ Note that for security reasons the `sanitize`, `sanitizeFn` and `whiteList` opti popperConfig null | object null - To change Bootstrap's default Popper.js config, see Popper.js's configuration + To change Bootstrap's default Popper.js config, see Popper.js's configuration diff --git a/site/content/docs/4.3/components/tooltips.md b/site/content/docs/4.3/components/tooltips.md index 087b80c009..384be87818 100644 --- a/site/content/docs/4.3/components/tooltips.md +++ b/site/content/docs/4.3/components/tooltips.md @@ -244,7 +244,7 @@ Note that for security reasons the `sanitize`, `sanitizeFn` and `whiteList` opti

Offset of the tooltip relative to its target.

When a function is used to determine the offset, it is called with an object containing the offset data as its first argument. The function must return an object with the same structure. The triggering element DOM node is passed as the second argument.

-

For more information refer to Popper.js's offset docs.

+

For more information refer to Popper.js's offset docs.

@@ -252,13 +252,13 @@ Note that for security reasons the `sanitize`, `sanitizeFn` and `whiteList` opti string | array 'flip' Allow to specify which position Popper will use on fallback. For more information refer to - Popper.js's behavior docs + Popper.js's behavior docs boundary string | element 'scrollParent' - Overflow constraint boundary of the tooltip. Accepts the values of 'viewport', 'window', 'scrollParent', or an HTMLElement reference (JavaScript only). For more information refer to Popper.js's preventOverflow docs. + Overflow constraint boundary of the tooltip. Accepts the values of 'viewport', 'window', 'scrollParent', or an HTMLElement reference (JavaScript only). For more information refer to Popper.js's preventOverflow docs. sanitize @@ -282,7 +282,7 @@ Note that for security reasons the `sanitize`, `sanitizeFn` and `whiteList` opti popperConfig null | object null - To change Bootstrap's default Popper.js config, see Popper.js's configuration + To change Bootstrap's default Popper.js config, see Popper.js's configuration diff --git a/site/content/docs/4.3/getting-started/browsers-devices.md b/site/content/docs/4.3/getting-started/browsers-devices.md index 10c3fd9078..572cf5e47c 100644 --- a/site/content/docs/4.3/getting-started/browsers-devices.md +++ b/site/content/docs/4.3/getting-started/browsers-devices.md @@ -89,7 +89,7 @@ Similarly, the latest versions of most desktop browsers are supported. -For Firefox, in addition to the latest normal stable release, we also support the latest [Extended Support Release (ESR)](https://www.mozilla.org/en-US/firefox/organizations/#faq) version of Firefox. +For Firefox, in addition to the latest normal stable release, we also support the latest [Extended Support Release (ESR)](https://www.mozilla.org/en-US/firefox/enterprise/) version of Firefox. Unofficially, Bootstrap should look and behave well enough in Chromium and Chrome for Linux, and Firefox for Linux, though they are not officially supported.