aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pivotal-tracker/webview.js
blob: ef1c8f1dffab16e98d146b2961660ec910327387 (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = (Ferdi) => {
  function getMessages() {
    const bell = document.querySelectorAll('#view65 > span')[0];
    counter = parseInt(bell.innerText);
    Ferdi.setBadge(counter);
  }

  Ferdi.loop(getMessages);
};