Started work on optional offial yotuube embed playback. Added basic client settings panel.

This commit is contained in:
rainbow napkin 2025-05-07 01:08:17 -04:00
parent 336c746ba7
commit aadeac03df
8 changed files with 173 additions and 1 deletions

View file

@ -64,7 +64,7 @@ class chatBox{
this.chatPrompt.addEventListener("input", this.displayAutocomplete.bind(this));
this.autocompleteDisplay.addEventListener("click", this.tabComplete.bind(this));
this.sendButton.addEventListener("click", this.send.bind(this));
this.settingsIcon.addEventListener("click", ()=>{this.client.cPanel.setActivePanel(new panelObj(client))});
this.settingsIcon.addEventListener("click", ()=>{this.client.cPanel.setActivePanel(new settingsPanel(client))});
this.adminIcon.addEventListener("click", ()=>{this.client.cPanel.setActivePanel(new queuePanel(client))});
this.emoteIcon.addEventListener("click", ()=>{this.client.cPanel.setActivePanel(new emotePanel(client))});