aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/trello/webview.js
blob: a6c107d60edac0ef33d9198ab5b7ff2cb2511587 (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = Ferdi => {
  const getMessages = function getMessages() {
    const notifications = document.querySelectorAll('[class*=_3W-zkl4-bnVKzJ]');
    Ferdi.setBadge(0, notifications.length >= 1 ? 1 : 0);
  };

  Ferdi.loop(getMessages);
};