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

  Ferdi.loop(getMessages);
};