aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/lib/RecipeWebview.js
diff options
context:
space:
mode:
authorLibravatar Gustavo Sampaio <gbritosampaio@gmail.com>2017-10-27 22:35:44 -0300
committerLibravatar Gustavo Sampaio <gbritosampaio@gmail.com>2017-10-27 22:35:44 -0300
commit47681c90b0067d8b979f1a88253973fea49741bc (patch)
treee2e9b9b6bcda72dec5898b2b2d0e06733f8adb20 /src/webview/lib/RecipeWebview.js
parentMerge pull request #152 from meetfranz/chore/travis-setup (diff)
downloadferdium-app-47681c90b0067d8b979f1a88253973fea49741bc.tar.gz
ferdium-app-47681c90b0067d8b979f1a88253973fea49741bc.tar.zst
ferdium-app-47681c90b0067d8b979f1a88253973fea49741bc.zip
Add onNotify event to let recipes update/change notifications before send them.
Add additional checks in ServiceStore.
Diffstat (limited to 'src/webview/lib/RecipeWebview.js')
-rw-r--r--src/webview/lib/RecipeWebview.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/webview/lib/RecipeWebview.js b/src/webview/lib/RecipeWebview.js
index 1787f85e2..b8acc1258 100644
--- a/src/webview/lib/RecipeWebview.js
+++ b/src/webview/lib/RecipeWebview.js
@@ -64,6 +64,12 @@ class RecipeWebview {
64 }); 64 });
65 } 65 }
66 66
67 onNotify(fn) {
68 if (typeof fn === 'function') {
69 window.Notification.onNotify = fn;
70 }
71 }
72
67 initialize(fn) { 73 initialize(fn) {
68 if (typeof fn === 'function') { 74 if (typeof fn === 'function') {
69 fn(); 75 fn();