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:
parent
923676455e
commit
48fcfbe3f2
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ document.addEventListener("DOMContentLoaded", function () {
|
|||
if ($(this).val().startsWith("Previous page")) {
|
||||
$(this).hide();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
$("form").each(function () {
|
||||
const form = $(this);
|
||||
|
|
Loading…
Reference in a new issue