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

  Ferdi.loop(getMessages);
};