From 00d62c5d42dc6f8f05620b3403b5e396300a302e Mon Sep 17 00:00:00 2001 From: "HRG @ SCExC" Date: Sun, 12 Jan 2025 10:15:09 -0500 Subject: [PATCH] chore: formatter --- public/js/bliss_inspector.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/js/bliss_inspector.js b/public/js/bliss_inspector.js index 5e7a513..6a4c42c 100644 --- a/public/js/bliss_inspector.js +++ b/public/js/bliss_inspector.js @@ -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()); });