8000 chore(docs): update "Can I use" links (#6043) · bootstrap-vue/bootstrap-vue@13e7302 · GitHub
[go: up one dir, main page]

Skip to content

Commit 13e7302

Browse files
authored
chore(docs): update "Can I use" links (#6043)
1 parent 586ce2f commit 13e7302

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

docs/markdown/reference/router-links/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ the viewport, Nuxt.js will automatically prefetch the code splitted page. Settin
174174

175175
Prefetching support requires
176176
[IntersectionObserver](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API)
177-
to be supported (see [CanIUse](https://caniuse.com/#feat=intersectionobserver)). For browsers that
178-
do not support IntersectionObserver, you can use the following conditional polyfill in
177+
to be supported (see [Can I use](https://caniuse.com/intersectionobserver)). For browsers that do
178+
not support IntersectionObserver, you can use the following conditional polyfill in
179179
`nuxt.config.js`:
180180

181181
```js

src/components/avatar/_avatar.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
max-height: auto;
8686
border-radius: inherit;
8787
// This is not supported in IE11 and Edge <16
88-
// https://caniuse.com/#feat=object-fit
88+
// https://caniuse.com/object-fit
8989
object-fit: cover;
9090
}
9191

src/components/form-file/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ files are selected the return value will be an array of JavaScript
5959
<strong>CAUTION:</strong> Directory mode is a <em>non-standard</em> feature. While being
6060
supported by all modern browsers, it should not be relied on for production.
6161
Read more on <a class="alert-link" href="https://developer.mozill 10000 a.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory">MDN</a>
62-
and <a class="alert-link" href="https://caniuse.com/#feat=input-file-directory">Can I use</a>.
62+
and <a class="alert-link" href="https://caniuse.com/input-file-directory">Can I use</a>.
6363
</p>
6464
</div>
6565

src/components/form-input/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ rendered and a console warning will be issued.
7575
**Caveats with input types:**
7676

7777
- Not all browsers support all input types, nor do some types render in the same format across
78-
browser types/versions. Refer to [caniuse.com](https://caniuse.com/#search=input).
78+
browser types/versions. Refer to [Can I use](https://caniuse.com/?search=input).
7979
- Browsers that do not support a particular type will fall back to a `text` input type (even though
8080
the rendered `type` attribute markup shows the requested type).
8181
- No testing is performed to see if the requested input type is supported by the browser.
@@ -474,7 +474,7 @@ from an array of options.
474474
- Datalists **cannot** be applied to input fields with type `password`, `range` or `color`.
475475
- Not all browsers fully support `<datalist>` and implementations can be buggy. It is recommended
476476
that datalists be treated as an enhancement and not be relied upon at this time. Check
477-
[Can I Use](https://caniuse.com/#feat=datalist) for full support details on all browsers.
477+
[Can I use](https://caniuse.com/datalist) for full support details on all browsers.
478478

479479
## `v-model` modifiers
480480

src/components/form-textarea/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ disabled in auto-height mode.
172172

173173
Auto-height works by computing the resulting height via CSS queries, hence the input has to be in
174174
document (DOM) and visible (not hidden via `display: none`). Initial height is computed on mount. If
175-
the browser client supports [`IntersectionObserver`](https://caniuse.com/#feat=intersectionobserver)
175+
the browser client supports [`IntersectionObserver`](https://caniuse.com/intersectionobserver)
176176
(either natively or via [a polyfill](/docs#js)), `<b-form-textarea>` will take advantage of this to
177177
determine when the textarea becomes visible and will then compute the height. Refer to the
178178
[Browser support](/docs#browser) section on the getting started page.

src/components/table/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1966,8 +1966,8 @@ sorts _before_ `z`) or Swedish set `sort-compare-locale="sv"` (in Swedish, `ä`
19661966
[MDN locales documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument)
19671967
for details on locale values.
19681968
- Not all browsers (or Node.js) support the `locale` and `options` with
1969-
`String.prototype.localeCompare()`. Refer to [Can I Use](https://caniuse.com/#feat=localecompare)
1970-
for browser support. For Node.js, you may need to add in
1969+
`String.prototype.localeCompare()`. Refer to [Can I use](https://caniuse.com/localecompare) for
1970+
browser support. For Node.js, you may need to add in
19711971
[Intl support](https://nodejs.org/api/intl.html) for handling locales, other than the default, to
19721972
prevent [SSR hydration mismatch errors](https://ssr.vuejs.org/guide/hydration.html).
19731973

0 commit comments

Comments
 (0)
0