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

  Ferdium.loop(getMessages);
};