Enhanced icons and tooltips.
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 42s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 42s
This commit is contained in:
@@ -1,9 +1,13 @@
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]');
|
||||
initTooltips(document);
|
||||
});
|
||||
|
||||
function initTooltips(elementRoot) {
|
||||
const tooltipTriggerList = elementRoot.querySelectorAll('[data-bs-action="tooltip"]');
|
||||
tooltipTriggerList.forEach((elem) => {
|
||||
new bootstrap.Tooltip(elem);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function setupClanButtons(dropdownId, delBtnId, editBtnId) {
|
||||
const dropdown = document.getElementById(dropdownId);
|
||||
|
||||
Reference in New Issue
Block a user