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

  Ferdi.loop(getMessages);
};