SimpleChat: Rename the half asleep mis-spelled global var
This commit is contained in:
parent
40fbbeb2f6
commit
5d84a92d62
1 changed files with 5 additions and 5 deletions
|
@ -508,17 +508,17 @@ class MultiChatUI {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
let gMuitChat;
|
let gMultiChat;
|
||||||
const gChatIds = [ "Default", "Other" ];
|
const gChatIds = [ "Default", "Other" ];
|
||||||
|
|
||||||
function startme() {
|
function startme() {
|
||||||
console.log("INFO:SimpleChat:StartMe:Starting...");
|
console.log("INFO:SimpleChat:StartMe:Starting...");
|
||||||
gMuitChat = new MultiChatUI();
|
gMultiChat = new MultiChatUI();
|
||||||
for (let cid of gChatIds) {
|
for (let cid of gChatIds) {
|
||||||
gMuitChat.new_chat_session(cid);
|
gMultiChat.new_chat_session(cid);
|
||||||
}
|
}
|
||||||
gMuitChat.setup_ui(gChatIds[0], true);
|
gMultiChat.setup_ui(gChatIds[0], true);
|
||||||
gMuitChat.show_sessions();
|
gMultiChat.show_sessions();
|
||||||
}
|
}
|
||||||
|
|
||||||
document.addEventListener("DOMContentLoaded", startme);
|
document.addEventListener("DOMContentLoaded", startme);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue