aboutsummaryrefslogtreecommitdiff
path: root/webAO/dom
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/dom')
-rw-r--r--webAO/dom/opusCheck.ts2
-rw-r--r--webAO/dom/resizeChatbox.ts1
2 files changed, 1 insertions, 2 deletions
diff --git a/webAO/dom/opusCheck.ts b/webAO/dom/opusCheck.ts
index 939fdc6..5f0248d 100644
--- a/webAO/dom/opusCheck.ts
+++ b/webAO/dom/opusCheck.ts
@@ -9,7 +9,7 @@ export function opusCheck(
if (audio === "") {
return;
}
- console.info(`failed to load sound ${channel.src}`);
+ console.warn(`failed to load sound ${channel.src}`);
let oldsrc = "";
let newsrc = "";
oldsrc = channel.src;
diff --git a/webAO/dom/resizeChatbox.ts b/webAO/dom/resizeChatbox.ts
index efb8bdc..887877d 100644
--- a/webAO/dom/resizeChatbox.ts
+++ b/webAO/dom/resizeChatbox.ts
@@ -17,7 +17,6 @@ export function resizeChatbox() {
let weekday = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
const month = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
document.getElementById("client_clock_month")!.innerText = month[now.getMonth()];
- console.debug(CHATBOX);
if (CHATBOX == "acww") {
weekday = ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"];
document.getElementById("client_clock_weekday")!.innerText = weekday[now.getDay()];