aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zoho/webview.js
blob: 4e8c900a069f05c8614615205412dacb72b0fce2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
const path = require('path');

module.exports = (Franz, options) => {
  const getMessages = () => {
    const unreadMail = $(".zmList.zmLUrd").length;

    Franz.setBadge(unreadMail);
  }

  Franz.loop(getMessages);
};