Status mit ZeitConsens synchronisieren

This commit is contained in:
2021-08-27 18:14:09 +02:00
parent 4283ee6b5c
commit cd303869c8
3 changed files with 137 additions and 0 deletions

View File

@ -18,3 +18,7 @@ waitForKeyElements('call-view', (element) => { callNotification.showCallNotifica
const callHistory = new CallHistory()
// eslint-disable-next-line no-undef
waitForKeyElements('.call-history-list call', (element) => { callHistory.showCallHistory(element) }, false)
const status = new Status()
// eslint-disable-next-line no-undef
waitForKeyElements('#status-change', (element) => { status.showStatus(element) }, false)