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

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

  Franz.loop(getMessages);
};