aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/skype
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-05-15 15:01:36 -0500
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-05-15 15:08:54 -0500
commitddeaca3d6776d8828e8d4bf1e849d0f7097982f0 (patch)
treedd5fc3ed9691c31ed55ce1d9a1b7bb827ae4465e /recipes/skype
parentUpgrade 'pnpm' to '7.1.0' (diff)
downloadferdium-recipes-ddeaca3d6776d8828e8d4bf1e849d0f7097982f0.tar.gz
ferdium-recipes-ddeaca3d6776d8828e8d4bf1e849d0f7097982f0.tar.zst
ferdium-recipes-ddeaca3d6776d8828e8d4bf1e849d0f7097982f0.zip
Use a click-handler for slack to capture all click events and open in the same recipe webview
Diffstat (limited to 'recipes/skype')
-rw-r--r--recipes/skype/webview.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes/skype/webview.js b/recipes/skype/webview.js
index 47b6f27..23e6919 100644
--- a/recipes/skype/webview.js
+++ b/recipes/skype/webview.js
@@ -30,6 +30,7 @@ module.exports = Ferdium => {
30 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); 30 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
31 Ferdium.injectJSUnsafe(_path.default.join(__dirname, 'webview-unsafe.js')); 31 Ferdium.injectJSUnsafe(_path.default.join(__dirname, 'webview-unsafe.js'));
32 32
33 // TODO: See how this can be moved into the main ferdium app and sent as an ipc message for opening with a new window or same Ferdium recipe's webview based on user's preferences
33 document.addEventListener('click', event => { 34 document.addEventListener('click', event => {
34 const link = event.target.closest('a[href^="http"]'); 35 const link = event.target.closest('a[href^="http"]');
35 const button = event.target.closest('button[title^="http"]'); 36 const button = event.target.closest('button[title^="http"]');