aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pivotal-tracker/webview.js
blob: 867184761218f85c1ae58cf14c181fbfa46fd348 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = Ferdium => {
  const getMessages = () => {
    const bell = document.querySelectorAll('#view65 > span')[0];
    if (bell) {
      Ferdium.setBadge(bell.textContent);
    }
  };

  Ferdium.loop(getMessages);
};