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.
This commit is contained in:
Kumi 2024-11-14 16:54:32 +01:00
parent 923676455e
commit 48fcfbe3f2
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -81,7 +81,7 @@ document.addEventListener("DOMContentLoaded", function () {
if ($(this).val().startsWith("Previous page")) { if ($(this).val().startsWith("Previous page")) {
$(this).hide(); $(this).hide();
} }
} });
$("form").each(function () { $("form").each(function () {
const form = $(this); const form = $(this);