chore: formatter

This commit is contained in:
HRG @ SCExC 2025-01-12 10:15:09 -05:00
parent bf37f91a34
commit 00d62c5d42

View file

@ -22,7 +22,7 @@ document.addEventListener("DOMContentLoaded", function () {
"border-yellow-500",
"relative",
"highlighted",
"p-2"
"p-2",
);
let controls = document.createElement("div");
controls.className =
@ -67,7 +67,7 @@ document.addEventListener("DOMContentLoaded", function () {
"_",
`on mouseover set my.style.zIndex to 10000
on mouseout set my.style.zIndex to "initial"
`
`,
);
controls.appendChild(cloneIcon);
@ -81,7 +81,7 @@ document.addEventListener("DOMContentLoaded", function () {
// Function to remove highlights
function removeHighlights() {
const elements = document.querySelectorAll(
"[data-bliss-route].highlighted"
"[data-bliss-route].highlighted",
);
elements.forEach((el) => {
el.classList.remove(
@ -89,7 +89,7 @@ document.addEventListener("DOMContentLoaded", function () {
"border-yellow-500",
"relative",
"highlighted",
"p-2"
"p-2",
);
el.querySelectorAll(".inspector-controls").forEach((el) => el.remove());
});