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

    Ferdi.setBadge(count);
  };

  Ferdi.loop(getMessages);
};