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.
13 lines
443 B
13 lines
443 B
// /**
|
|
// * 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 });
|
|
});
|
|
})();
|
|
|