From 7cf8cc4dbcfb3d02f1fdc29b6bc81f4620b7a3e7 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sun, 4 Jan 2026 11:51:36 -0600 Subject: [PATCH] checkpoint --- index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 1e39e654..48dc4187 100644 --- a/index.html +++ b/index.html @@ -530,12 +530,12 @@ } } } - function moveEntryUp(entry) { - const prev = entry.previousElementSibling; - if (prev) { - entry.parentNode.insertBefore(prev, entry); - } - } + function moveEntryUp(entry) { + const prev = entry.previousElementSibling; + if (prev) { + entry.parentNode.insertBefore(entry, prev); + } + } function moveEntryDown(entry) { const next = entry.nextElementSibling; if (next) {