mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 19:36:45 +02:00
Make chat open links in internal Web browser instead of custom window
This commit is contained in:
parent
7ea6452de0
commit
86aa3c8709
2 changed files with 2 additions and 7 deletions
|
@ -5,6 +5,7 @@ module.exports = {
|
|||
"ecmaVersion": 5
|
||||
},
|
||||
"globals": {
|
||||
"About": false,
|
||||
"Account": false,
|
||||
"Agent": false,
|
||||
"AnimationCache": false,
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue