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
},
"globals": {
"About": false,
"Account": false,
"Agent": false,
"AnimationCache": false,

View file

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