aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/ServicesStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/ServicesStore.js')
-rw-r--r--src/stores/ServicesStore.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 0ad523374..a8d9cc1fb 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -631,7 +631,8 @@ export default class ServicesStore extends Store {
631 } 631 }
632 632
633 @action _openWindow({ event }) { 633 @action _openWindow({ event }) {
634 if (event.disposition !== 'new-window' && event.url !== 'about:blank') { 634 if (event.url !== 'about:blank') {
635 event.preventDefault();
635 this.actions.app.openExternalUrl({ url: event.url }); 636 this.actions.app.openExternalUrl({ url: event.url });
636 } 637 }
637 } 638 }