From 48fcfbe3f261242ff63a819470f94543c27afd30 Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 14 Nov 2024 16:54:32 +0100 Subject: [PATCH] fix: correct indentation error in event listener callback Adjusted the indentation of the event listener's callback function to ensure proper closing of the block. This prevents potential syntax errors and improves code readability. --- global.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.js b/global.js index f40f093..b46ee35 100644 --- a/global.js +++ b/global.js @@ -81,7 +81,7 @@ document.addEventListener("DOMContentLoaded", function () { if ($(this).val().startsWith("Previous page")) { $(this).hide(); } - } + }); $("form").each(function () { const form = $(this);