aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zoho/webview.js
blob: e4f6108e62da89758a5bcb83896d3caf6134c942 (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 = $(".zm_urd").not(".hidden").length;

    Franz.setBadge(unreadMail);
  }

  Franz.loop(getMessages);
};