From 39259baf54465cda1f8cf4b79387fd7f304bf5ef Mon Sep 17 00:00:00 2001 From: Steawth <99520694+steawth@users.noreply.github.com> Date: Sun, 15 Sep 2024 08:42:44 +0000 Subject: [PATCH] Update frontend.js Swapped around how the window title is named so that it shows the most important information first --- client/frontend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/frontend.js b/client/frontend.js index eb3608b..ff280a2 100644 --- a/client/frontend.js +++ b/client/frontend.js @@ -84,7 +84,7 @@ function hideAllDisplayWrappers() { } function setPageTitle(page) { - document.title = 'CVRX - ' + page.charAt(0).toUpperCase() + page.slice(1); + document.title = page.charAt(0).toUpperCase() + page.slice(1) + ' - CVRX'; } function setInputValueAndFocus(selector, value) {