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

  Ferdi.loop(getMessages);
};