Browse Source

Show chat by default. Closes #137

pull/146/head
Gabe Kangas 5 years ago
parent
commit
2c1caa1238
  1. 2
      webroot/js/app.js

2
webroot/js/app.js

@ -42,7 +42,7 @@ export default class App extends Component { @@ -42,7 +42,7 @@ export default class App extends Component {
this.state = {
websocket: new Websocket(),
displayChat: getLocalStorage(KEY_CHAT_DISPLAYED), // chat panel state
displayChat: getLocalStorage(KEY_CHAT_DISPLAYED) || true, // chat panel state
chatEnabled: false, // chat input box state
username: getLocalStorage(KEY_USERNAME) || generateUsername(),
userAvatarImage:

Loading…
Cancel
Save