mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 11:23:18 +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
|
"ecmaVersion": 5
|
||||||
},
|
},
|
||||||
"globals": {
|
"globals": {
|
||||||
|
"About": false,
|
||||||
"Account": false,
|
"Account": false,
|
||||||
"Agent": false,
|
"Agent": false,
|
||||||
"AnimationCache": false,
|
"AnimationCache": false,
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue