forked from mystiq/hydrogen-web
Add leave button to call view
This commit is contained in:
parent
c99fc2ad70
commit
5cacdcfee0
1 changed files with 4 additions and 1 deletions
|
@ -34,7 +34,10 @@ export class CallView extends TemplateView<CallViewModel> {
|
||||||
return t.div({class: "CallView"}, [
|
return t.div({class: "CallView"}, [
|
||||||
t.p(vm => `Call ${vm.name} (${vm.id})`),
|
t.p(vm => `Call ${vm.name} (${vm.id})`),
|
||||||
t.div({class: "CallView_me"}, bindVideoTracks(t, t.video({autoplay: true, width: 240}), vm => vm.localTracks)),
|
t.div({class: "CallView_me"}, bindVideoTracks(t, t.video({autoplay: true, width: 240}), vm => vm.localTracks)),
|
||||||
t.view(new ListView({list: vm.memberViewModels}, vm => new MemberView(vm)))
|
t.view(new ListView({list: vm.memberViewModels}, vm => new MemberView(vm))),
|
||||||
|
t.div({class: "buttons"}, [
|
||||||
|
t.button({onClick: () => vm.leave()}, "Leave")
|
||||||
|
])
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue