From 86aa3c87092697befe753a09f78e3559bced1c71 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Sat, 3 Oct 2020 16:29:14 +1300 Subject: [PATCH] Make chat open links in internal Web browser instead of custom window --- .eslintrc.js | 1 + scripts/communityScripts/chat/FloofChat.js | 8 +------- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 9900825b23..df606f0dc9 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -5,6 +5,7 @@ module.exports = { "ecmaVersion": 5 }, "globals": { + "About": false, "Account": false, "Agent": false, "AnimationCache": false, diff --git a/scripts/communityScripts/chat/FloofChat.js b/scripts/communityScripts/chat/FloofChat.js index b558e52bf8..2d8094d83e 100644 --- a/scripts/communityScripts/chat/FloofChat.js +++ b/scripts/communityScripts/chat/FloofChat.js @@ -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);