You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
443 B
14 lines
443 B
2 years ago
|
// /**
|
||
|
// * UI Tooltips & Popovers
|
||
|
// */
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
(function () {
|
||
|
const popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'));
|
||
|
const popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
|
||
|
// added { html: true, sanitize: false } option to render button in content area of popover
|
||
|
return new bootstrap.Popover(popoverTriggerEl, { html: true, sanitize: false });
|
||
|
});
|
||
|
})();
|