aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zalo/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/zalo/webview.js')
-rw-r--r--recipes/zalo/webview.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/zalo/webview.js b/recipes/zalo/webview.js
index a89f0d3..2966ca1 100644
--- a/recipes/zalo/webview.js
+++ b/recipes/zalo/webview.js
@@ -1,9 +1,9 @@
1module.exports = Franz => { 1module.exports = Ferdi => {
2 const getMessages = function getMessages() { 2 const getMessages = function getMessages() {
3 const unread = 0; 3 const unread = 0;
4 const notificationBadge = document.getElementsByClassName('tab-red-dot').length; 4 const notificationBadge = document.getElementsByClassName('tab-red-dot').length;
5 Franz.setBadge(notificationBadge); 5 Ferdi.setBadge(notificationBadge);
6 }; 6 };
7 7
8 Franz.loop(getMessages); 8 Ferdi.loop(getMessages);
9}; 9};