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.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/recipes/zoho/webview.js b/recipes/zoho/webview.js
index 2f6f58c..29ffa9c 100644
--- a/recipes/zoho/webview.js
+++ b/recipes/zoho/webview.js
@@ -2,9 +2,10 @@ const path = require('path');
2 2
3module.exports = (Franz, options) => { 3module.exports = (Franz, options) => {
4 const getMessages = () => { 4 const getMessages = () => {
5 const unreadMail = $("#zmlTree .zmTreeNDWra .zmBold").length; 5 const unreadMailInCurrentFolder = $(".zmList.zmLUrd").length;
6 const unreadMailAnyware = $("#zmlTree .zmTreeNDWra .zmBold").length;
6 7
7 Franz.setBadge(unreadMail); 8 Franz.setBadge(unreadMailInCurrentFolder, unreadMailAnyware);
8 } 9 }
9 10
10 Franz.loop(getMessages); 11 Franz.loop(getMessages);