From 107721b8b7a0c6bca15a1c3e05866f06a363dbb8 Mon Sep 17 00:00:00 2001
From: Chris Gilligan <49878588+UTCGilligan@users.noreply.github.com>
Date: Wed, 7 Jan 2026 15:47:51 -0500
Subject: [PATCH] UTCT-241: Update admin version message.
Signed-off-by: Chris Gilligan <49878588+UTCGilligan@users.noreply.github.com>
---
user/plugins/sleeky-backend/assets/js/theme.js | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/user/plugins/sleeky-backend/assets/js/theme.js b/user/plugins/sleeky-backend/assets/js/theme.js
index 5b1b9bd..d4b8c78 100644
--- a/user/plugins/sleeky-backend/assets/js/theme.js
+++ b/user/plugins/sleeky-backend/assets/js/theme.js
@@ -20,7 +20,7 @@ $( document ).ready(function() {
} else if ($('meta[name=sleeky_theme]').attr("content") == 'dark') {
theme = "dark";
}
-
+
console.log("Theme is", theme)
// Update favicon
@@ -40,7 +40,7 @@ $( document ).ready(function() {
$("#login").prepend(`
`);
}
-
+
} else if ($("body").hasClass("index")) {
// Index page
console.log("Index page");
@@ -99,7 +99,7 @@ $( document ).ready(function() {
}
} else {
console.warn("Unknown page");
-
+
handleNav();
}
@@ -137,8 +137,8 @@ $( document ).ready(function() {
// Update footer
var content = $(this).html();
var i = 77
- var updated_content = "Running on" + content.slice(13, i) + '& Sleeky' + content.slice(i-1)
+ var updated_content = "Running on" + content.slice(13, i) + ' & Sleeky' + content.slice(i-0)
$(this).html(updated_content);
}
});
-});
\ No newline at end of file
+});