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

    Franz.setBadge(count);
  };
  Franz.loop(getMessages);
};