aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/skype/webview.js
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2021-12-08 23:40:09 +0530
committerLibravatar GitHub <noreply@github.com>2021-12-08 23:40:09 +0530
commit1e1f9ecc53121749bc99a46bb5aecca51325836f (patch)
treeb52348c59f00ba4d0b8e1390d8f535d63fe90f3d /recipes/skype/webview.js
parentchore: upgrade 'pnpm' to '6.23.6' (diff)
downloadferdium-recipes-1e1f9ecc53121749bc99a46bb5aecca51325836f.tar.gz
ferdium-recipes-1e1f9ecc53121749bc99a46bb5aecca51325836f.tar.zst
ferdium-recipes-1e1f9ecc53121749bc99a46bb5aecca51325836f.zip
chore: use 'nativeWindowOpen' to see if this resolves issues with opening browser window on clicking links (#786)
(based on https://github.com/TheGoddessInari/hamsket/commit/27226145f7ac0c5acf7aa13e6c8b26687b4e1013\)
Diffstat (limited to 'recipes/skype/webview.js')
-rw-r--r--recipes/skype/webview.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/skype/webview.js b/recipes/skype/webview.js
index 7c07ee1..1947ddb 100644
--- a/recipes/skype/webview.js
+++ b/recipes/skype/webview.js
@@ -48,7 +48,8 @@ module.exports = (Ferdi, settings) => {
48 height: window.innerHeight, 48 height: window.innerHeight,
49 minWidth: 600, 49 minWidth: 600,
50 webPreferences: { 50 webPreferences: {
51 partition: `persist:service-${settings.id}` 51 partition: `persist:service-${settings.id}`,
52 nativeWindowOpen: true,
52 // TODO: Aren't these needed here? 53 // TODO: Aren't these needed here?
53 // contextIsolation: false, 54 // contextIsolation: false,
54 // enableRemoteModule: true, 55 // enableRemoteModule: true,