aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zimbra/webview.js
blob: e2cf890795e6dd631d3c615076d83030a0ba3b44 (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = Ferdi => {
  const getMessages = function getMessages() {
    const { title } = document;
    const regex = /\d+/;
    Ferdi.setBadge(regex.test(title) ? Number(regex.exec(title)[0]) : 0);
  };

  Ferdi.loop(getMessages);
};