aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/skype
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
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')
-rw-r--r--recipes/skype/package.json2
-rw-r--r--recipes/skype/webview.js3
2 files changed, 3 insertions, 2 deletions
diff --git a/recipes/skype/package.json b/recipes/skype/package.json
index 9727a06..9243300 100644
--- a/recipes/skype/package.json
+++ b/recipes/skype/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "skype", 2 "id": "skype",
3 "name": "Skype", 3 "name": "Skype",
4 "version": "3.2.3", 4 "version": "3.2.4",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://web.skype.com/", 7 "serviceURL": "https://web.skype.com/",
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,