feat: enable bs tooltips for all elements with title attr
This commit is contained in:
parent
0120ac6dee
commit
2d64bccc50
@ -16,7 +16,7 @@ declare const katex: any;
|
|||||||
block.innerHTML = content;
|
block.innerHTML = content;
|
||||||
});
|
});
|
||||||
|
|
||||||
document.querySelectorAll("img[title]").forEach((img) => {
|
document.querySelectorAll("[title]").forEach((img) => {
|
||||||
img.setAttribute("data-bs-toggle", "tooltip");
|
img.setAttribute("data-bs-toggle", "tooltip");
|
||||||
img.setAttribute("data-bs-placement", "bottom");
|
img.setAttribute("data-bs-placement", "bottom");
|
||||||
img.setAttribute("data-bs-html", "true");
|
img.setAttribute("data-bs-html", "true");
|
||||||
|
Loading…
Reference in New Issue
Block a user