Skip to content

Commit

Permalink
Resolve VOX-8187
Browse files Browse the repository at this point in the history
  • Loading branch information
Olga Nikitina committed Jul 14, 2021
1 parent b26bc6e commit cec391f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/StartCallBtn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
components: { Button },
setup() {
const startCall = () => {
window.open(`${window.location.href}call`);
window.open(
`${window.location.href}call`,
'_blank',
'width=800,height=600,resizable=no,toolbar=no,menubar=no,location=no,status=no'
);
};
return {
startCall,
Expand Down

0 comments on commit cec391f

Please sign in to comment.