aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/TickTick/webview.js
blob: ae3265b3833dca32cbffde077a6cf6647cd5f3b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = (Ferdi) => {
  const getMessages = () => {
    // all overdue items are being counted
    const count = document.querySelectorAll('.duedate-overdue').length;

    Ferdi.setBadge(count);
  };

  Ferdi.loop(getMessages);
};