aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/jira/webview.js
blob: 246511ee7b6627697e73d756f3d42712bd5c7065 (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = (Ferdi) => {
  const getMessages = () => {
    // get unread messages
    const element = document.querySelector('#atlassian-navigation-notification-count span');
    Ferdi.setBadge(element ? element.innerText : 0);
  };

  Ferdi.loop(getMessages);
};