more optimizations, remove WTVIRC for now, upgrade test.js

This commit is contained in:
zefie
2025-08-13 21:42:22 -04:00
parent 54bb975f1a
commit 22c7229e38
162 changed files with 1002 additions and 5539 deletions

View File

@@ -47,7 +47,7 @@ function ShowMessengerPanel()
</table>
</sidebar>
<BODY BGCOLOR="#191919" TEXT="#42CC55" LINK="189CD6" VLINK="189CD6" HSPACE=0 VSPACE=0 FONTSIZE="large"`;
if (request_headers.query.just_enabled == "true") {
if (request_headers.query.just_enabled === "true") {
data += "onload=ShowMessengerPanel()"
} data += `
>
@@ -69,7 +69,7 @@ Messenger
<tr>
<td absheight=195 valign=top>
Messenger is currently <b>`;
if (session_data.getSessionData("messenger_enabled") == 1) {
if (session_data.getSessionData("messenger_enabled") === 1) {
data += "on"
} else {
data += "off"
@@ -81,7 +81,7 @@ if (session_data.getSessionData("messenger_enabled") == 1) {
<tr>
<td align=left>
<a href="messenger-enable">Turn messenger `;
if (!session_data.getSessionData("messenger_enabled") == 1) {
if (!session_data.getSessionData("messenger_enabled") === 1) {
data += "on"
} else {
data += "off"