aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/webview/lib/RecipeWebview.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/webview/lib/RecipeWebview.js b/src/webview/lib/RecipeWebview.js
index fa2dc5654..f1d493e7c 100644
--- a/src/webview/lib/RecipeWebview.js
+++ b/src/webview/lib/RecipeWebview.js
@@ -137,6 +137,10 @@ class RecipeWebview {
137 setAvatarImage(avatarUrl) { 137 setAvatarImage(avatarUrl) {
138 ipcRenderer.sendToHost('avatar', avatarUrl); 138 ipcRenderer.sendToHost('avatar', avatarUrl);
139 } 139 }
140
141 openNewWindow(url) {
142 ipcRenderer.sendToHost('new-window', url);
143 }
140} 144}
141 145
142export default RecipeWebview; 146export default RecipeWebview;