There was an error while loading. Please reload this page.
1 parent b215e8f commit f25a60eCopy full SHA for f25a60e
src/config.js
@@ -55,7 +55,7 @@ export const Config = {
55
// MU* protocol (text channel, json channel, etc)
56
useMuProtocol: param('useMuProtocol') || 0,
57
58
- chatterBox: param('chatterBox') || 1,
+ chatterbox: param('chatterbox') || 0,
59
60
device: {
61
touch: 'ontouchstart' in window,
src/main.js
@@ -12,7 +12,9 @@ window.jQuery = window.$ = jQuery;
12
document.addEventListener('DOMContentLoaded', () => {
13
initializeCore();
14
15
- if (Config.chatterBox) {
+ console.log(Config);
16
+
17
+ if (Config.chatterbox) {
18
new ChatterBox({
19
id: '#chat-window',
20
title: 'ChatterBox',
0 commit comments