aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zoho/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/zoho/webview.js')
-rw-r--r--recipes/zoho/webview.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/zoho/webview.js b/recipes/zoho/webview.js
index 29ffa9c..60fd052 100644
--- a/recipes/zoho/webview.js
+++ b/recipes/zoho/webview.js
@@ -2,11 +2,11 @@ const path = require('path');
2 2
3module.exports = (Franz, options) => { 3module.exports = (Franz, options) => {
4 const getMessages = () => { 4 const getMessages = () => {
5 const unreadMailInCurrentFolder = $(".zmList.zmLUrd").length; 5 const unreadMailInCurrentFolder = $('.zmList.zmLUrd').length;
6 const unreadMailAnyware = $("#zmlTree .zmTreeNDWra .zmBold").length; 6 const unreadMailAnyware = $('#zmlTree .zmTreeNDWra .zmBold').length;
7 7
8 Franz.setBadge(unreadMailInCurrentFolder, unreadMailAnyware); 8 Franz.setBadge(unreadMailInCurrentFolder, unreadMailAnyware);
9 } 9 };
10 10
11 Franz.loop(getMessages); 11 Franz.loop(getMessages);
12}; 12};