File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 20
20
// --------
21
21
// Tooltips
22
22
// --------
23
- // Instanciate all tooltips in a docs or StackBlitz page
23
+ // Instantiate all tooltips in a docs or StackBlitz page
24
24
document . querySelectorAll ( '[data-bs-toggle="tooltip"]' )
25
25
. forEach ( tooltip => {
26
26
new bootstrap . Tooltip ( tooltip )
29
29
// --------
30
30
// Popovers
31
31
// --------
32
- // Instanciate all popovers in a docs or StackBlitz page
32
+ // Instantiate all popovers in a docs or StackBlitz page
33
33
document . querySelectorAll ( '[data-bs-toggle="popover"]' )
34
34
. forEach ( popover => {
35
35
new bootstrap . Popover ( popover )
50
50
} )
51
51
}
52
52
53
- // Instanciate all toasts in a docs page only
53
+ // Instantiate all toasts in a docs page only
54
54
document . querySelectorAll ( '.bd-example .toast' )
55
55
. forEach ( toastNode => {
56
56
const toast = new bootstrap . Toast ( toastNode , {
60
60
toast . show ( )
61
61
} )
62
62
63
- // Instanciate all toasts in a docs page only
63
+ // Instantiate all toasts in a docs page only
64
64
const toastTrigger = document . getElementById ( 'liveToastBtn' )
65
65
const toastLiveExample = document . getElementById ( 'liveToast' )
66
66
if ( toastTrigger ) {
You can’t perform that action at this time.
0 commit comments