Compare commits

...

1 commit

Author SHA1 Message Date
Muhsin Keloth
101831b831 Fix the file dwload twice issue in conversation 2021-10-22 08:16:02 +05:30

View file

@ -35,7 +35,11 @@ export default {
},
methods: {
openLink() {
const win = window.open(this.url, '_blank', 'noopener');
const win = window.open(
URL,
'_blank',
'toolbar=no,resizable=yes,location=yes,menubar=yes'
);
if (win) win.focus();
},
},