aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/clickup/webview.js
blob: 420ca5a3b7ea6f830e692f76df20a8acdd10b682 (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = Ferdi => {
  const getMessages = function getMessages() {
    const elements = document.querySelectorAll('.unreadCount');
    const unread = document.querySelector('.cu-notification-alert__dot');
    Ferdi.setBadge(unread ? 1 : 0);
  };

  Ferdi.loop(getMessages);
};