Skip to content

Commit 35806e7

Browse files
authored
fix(docs): correct polyfilling suggestions (#3605)
* fix(docs): polyfilling suggestions * Update README.md
1 parent 5b264ab commit 35806e7

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

docs/markdown/intro/README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ JavaScript files.
494494
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.min.css" />
495495

496496
<!-- Load polyfills to support older browsers -->
497-
<script src="//polyfill.io/v3/polyfill.min.js?features=es2015%2CMutationObserver" crossorigin="anonymous"></script>
497+
<script src="//polyfill.io/v3/polyfill.min.js?features=es2015%2CIntersectionObserver" crossorigin="anonymous"></script>
498498

499499
<!-- Load Vue followed by BootstrapVue -->
500500
<script src="//unpkg.com/vue@latest/dist/vue.min.js"></script>
@@ -551,34 +551,35 @@ Following features and APIs are used by BootstrapVue:
551551
- ES6 (e.g. `Array.from()`, `Array.isArray()`, `Object.assign()`, `Object.is()`, etc.)
552552
- `Promise`
553553
- `MutationObserver`
554+
- `IntersectionObserver` (optional)
554555

555556
If you want to support older IE, Android and iOS devices, you may want to use
556557
[core-js](https://github.com/zloirock/core-js) and
557-
[mutationobserver-shim](https://www.npmjs.com/package/mutationobserver-shim):
558+
[intersection-observer](https://www.npmjs.com/package/intersection-observer):
558559

559-
- `npm install core-js regenerator-runtime mutationobserver-shim`
560+
- `npm install core-js regenerator-runtime intersection-observer`
560561
- Import the polyfills in your app main entry point:
561562

562563
<!-- eslint-disable no-unused-vars -->
563564

564565
```js
565-
import 'core-js/stable"'
566+
import 'core-js/stable'
566567
import 'regenerator-runtime/runtime'
567-
import 'mutationobserver-shim'
568+
import 'intersection-observer' // Optional
568569
import Vue from 'vue'
569570
import BootstrapVue from 'bootstrap-vue'
570571
```
571572

572573
If using deprecated [@babel/polyfill](https://babeljs.io/docs/en/babel-polyfill/):
573574

574-
- `npm install @babel/polyfill mutationobserver-shim`
575+
- `npm install @babel/polyfill intersection-observer`
575576
- Import the polyfills in your app main entry point:
576577

577578
<!-- eslint-disable no-unused-vars -->
578579

579580
```js
580581
import '@babel/polyfill'
581-
import 'mutationobserver-shim'
582+
import 'intersection-observer' // Optional
582583
import Vue from 'vue'
583584
import BootstrapVue from 'bootstrap-vue'
584585
```

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,10 @@ do not support IntersectionObserver, you can use the following conditional polyf
169169
export default {
170170
head: {
171171
script: [
172-
{ src: 'https://polyfill.io/v2/polyfill.min.js?features=IntersectionObserver', body: true }
172+
{
173+
src: 'https://polyfill.io/v3/polyfill.min.js?features=es2015%2CIntersectionObserver',
174+
body: true
175+
}
173176
]
174177
}
175178
}

docs/nuxt.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ module.exports = {
158158
meta: [{ 'http-equiv': 'X-UA-Compatible', content: 'IE=edge' }],
159159
script: [
160160
{
161-
src: '//polyfill.io/v3/polyfill.min.js?features=es2015%2CMutationObserver',
161+
src: '//polyfill.io/v3/polyfill.min.js?features=es2015%2CIntersectionObserver',
162162
crossorigin: 'anonymous'
163163
}
164164
]

0 commit comments

Comments
 (0)