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

    Ferdium.setBadge(count);
  };

  Ferdium.loop(getMessages);
};