Skip to content

Commit f25a60e

Browse files
committed
chore: chatterbox disabled by default
1 parent b215e8f commit f25a60e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const Config = {
5555
// MU* protocol (text channel, json channel, etc)
5656
useMuProtocol: param('useMuProtocol') || 0,
5757

58-
chatterBox: param('chatterBox') || 1,
58+
chatterbox: param('chatterbox') || 0,
5959

6060
device: {
6161
touch: 'ontouchstart' in window,

src/main.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ window.jQuery = window.$ = jQuery;
1212
document.addEventListener('DOMContentLoaded', () => {
1313
initializeCore();
1414

15-
if (Config.chatterBox) {
15+
console.log(Config);
16+
17+
if (Config.chatterbox) {
1618
new ChatterBox({
1719
id: '#chat-window',
1820
title: 'ChatterBox',

0 commit comments

Comments
 (0)