Skip to content

Commit 72a41e2

Browse files
authored
Merge pull request #453 from yuya-oc/fix-window-open
Fix window.open() looks not working
2 parents a82daa4 + 579e966 commit 72a41e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/browser/components/MattermostView.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const MattermostView = React.createClass({
7272
}
7373
if (currentURL.host === destURL.host) {
7474
// New window should disable nodeIntergration.
75-
window.open(e.url, 'Mattermost', 'nodeIntegration=no');
75+
window.open(e.url, 'Mattermost', 'nodeIntegration=no, show=yes');
7676
} else {
7777
// if the link is external, use default browser.
7878
shell.openExternal(e.url);

0 commit comments

Comments
 (0)