@@ -494,7 +494,7 @@ JavaScript files.
494
494
<link type =" text/css" rel =" stylesheet" href =" //unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.min.css" />
495
495
496
496
<!-- 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 >
498
498
499
499
<!-- Load Vue followed by BootstrapVue -->
500
500
<script src =" //unpkg.com/vue@latest/dist/vue.min.js" ></script >
@@ -551,34 +551,35 @@ Following features and APIs are used by BootstrapVue:
551
551
- ES6 (e.g. ` Array.from() ` , ` Array.isArray() ` , ` Object.assign() ` , ` Object.is() ` , etc.)
552
552
- ` Promise `
553
553
- ` MutationObserver `
554
+ - ` IntersectionObserver ` (optional)
554
555
555
556
If you want to support older IE, Android and iOS devices, you may want to use
556
557
[ 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 ) :
558
559
559
- - ` npm install core-js regenerator-runtime mutationobserver-shim `
560
+ - ` npm install core-js regenerator-runtime intersection-observer `
560
561
- Import the polyfills in your app main entry point:
561
562
562
563
<!-- eslint-disable no-unused-vars -->
563
564
564
565
``` js
565
- import ' core-js/stable" '
566
+ import ' core-js/stable'
566
567
import ' regenerator-runtime/runtime'
567
- import ' mutationobserver-shim '
568
+ import ' intersection-observer ' // Optional
568
569
import Vue from ' vue'
569
570
import BootstrapVue from ' bootstrap-vue'
570
571
```
571
572
572
573
If using deprecated [ @babel/polyfill ] ( https://babeljs.io/docs/en/babel-polyfill/ ) :
573
574
574
- - ` npm install @babel/polyfill mutationobserver-shim `
575
+ - ` npm install @babel/polyfill intersection-observer `
575
576
- Import the polyfills in your app main entry point:
576
577
577
578
<!-- eslint-disable no-unused-vars -->
578
579
579
580
``` js
580
581
import ' @babel/polyfill'
581
- import ' mutationobserver-shim '
582
+ import ' intersection-observer ' // Optional
582
583
import Vue from ' vue'
583
584
import BootstrapVue from ' bootstrap-vue'
584
585
```
0 commit comments