@jsxc/jsxc
Version:
Real-time XMPP chat application with video calls, file transfer and encrypted communication
18 lines (13 loc) • 382 B
text/typescript
import SM from '../StateMachine';
import ChatWindowList from './ChatWindowList';
import Roster from './Roster';
export function init() {
if (SM.getUIState() === SM.UISTATE.STANDBY) {
SM.changeUIState(SM.UISTATE.INITIATING);
ChatWindowList.init();
Roster.init();
}
// if (Options.get('muteNotification')) {
// Notification.muteSound();
// }
}