Browse Source

checkpoint

webui
Antonio SJ Musumeci 1 week ago
parent
commit
7cf8cc4dbc
  1. 12
      index.html

12
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) { function moveEntryDown(entry) {
const next = entry.nextElementSibling; const next = entry.nextElementSibling;
if (next) { if (next) {

Loading…
Cancel
Save