Make chat open links in internal Web browser instead of custom window

This commit is contained in:
David Rowe 2020-10-03 16:29:14 +13:00
parent 7ea6452de0
commit 86aa3c8709
2 changed files with 2 additions and 7 deletions

View file

@ -5,6 +5,7 @@ module.exports = {
"ecmaVersion": 5 "ecmaVersion": 5
}, },
"globals": { "globals": {
"About": false,
"Account": false, "Account": false,
"Agent": false, "Agent": false,
"AnimationCache": false, "AnimationCache": false,

View file

@ -322,13 +322,7 @@ function onWebEventReceived(event) {
gotoConfirm(event.url); gotoConfirm(event.url);
} }
if (event.cmd === "URL") { if (event.cmd === "URL") {
new OverlayWebWindow({ About.openUrl(event.url);
title: 'Web',
source: event.url,
width: 900,
height: 700,
visible: true
});
} }
if (event.cmd === "EXTERNALURL") { if (event.cmd === "EXTERNALURL") {
Window.openUrl(event.url); Window.openUrl(event.url);