aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pivotal-tracker/webview.js
blob: 1908a3665c4cf68de90d2fa5b3706372a60763b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module.exports = (Franz, options) => {
  function getMessages() {
    const bell = document.querySelectorAll('#view65 > span')[0];

    counter = parseInt(bell.innerText);

    Franz.setBadge(counter);
  }

  Franz.loop(getMessages);
};