aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/clockify/webview.js
blob: 252b3e3b54d093c0928809cd04199e2bc63098ad (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = Ferdi => {
  const getMessages = function getMessages() {
    const notifications = document.querySelectorAll('.notification--number');

    Ferdi.setBadge(0, notifications.length >= 1 ? 1 : 0);
  };

  Ferdi.loop(getMessages);
};