mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-24 21:16:33 +02:00
Use Window.openWebBrowser() instead of About.openUrl() in chat script
This commit is contained in:
parent
64eb4d11e1
commit
3e94a034ca
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ function onWebEventReceived(event) {
|
||||||
gotoConfirm(event.url);
|
gotoConfirm(event.url);
|
||||||
}
|
}
|
||||||
if (event.cmd === "URL") {
|
if (event.cmd === "URL") {
|
||||||
About.openUrl(event.url);
|
Window.openWebBrowser(event.url);
|
||||||
}
|
}
|
||||||
if (event.cmd === "EXTERNALURL") {
|
if (event.cmd === "EXTERNALURL") {
|
||||||
Window.openUrl(event.url);
|
Window.openUrl(event.url);
|
||||||
|
|
Loading…
Reference in a new issue