aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/lib
diff options
context:
space:
mode:
authorLibravatar Danny Qiu <dqiu55@gmail.com>2017-11-14 01:39:44 -0500
committerLibravatar Danny Qiu <dqiu55@gmail.com>2017-11-14 01:39:44 -0500
commitb15421b0597fa40d961db2e102d6b54059196b27 (patch)
tree12a4c16f46dead399f44535b9bcb892fe506617e /src/webview/lib
parentMerge pull request #263 from meetfranz/feature/mute-service (diff)
downloadferdium-app-b15421b0597fa40d961db2e102d6b54059196b27.tar.gz
ferdium-app-b15421b0597fa40d961db2e102d6b54059196b27.tar.zst
ferdium-app-b15421b0597fa40d961db2e102d6b54059196b27.zip
Fix application of onNotify
Diffstat (limited to 'src/webview/lib')
-rw-r--r--src/webview/lib/RecipeWebview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webview/lib/RecipeWebview.js b/src/webview/lib/RecipeWebview.js
index b8acc1258..048beea69 100644
--- a/src/webview/lib/RecipeWebview.js
+++ b/src/webview/lib/RecipeWebview.js
@@ -66,7 +66,7 @@ class RecipeWebview {
66 66
67 onNotify(fn) { 67 onNotify(fn) {
68 if (typeof fn === 'function') { 68 if (typeof fn === 'function') {
69 window.Notification.onNotify = fn; 69 window.Notification.prototype.onNotify = fn;
70 } 70 }
71 } 71 }
72 72