aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/flock/webview.js
blob: 29b52d3a9418dc695af7a7d950595eaec4aad8ab (plain) (blame)
1
2
3
4
5
6
7
module.exports = Ferdi => {
  const getMessages = () => {
    const allMessages = Ferdi.safeParseInt(document.querySelector('.team-counter').textContent);
    Ferdi.setBadge(allMessages);
  };
  Ferdi.loop(getMessages);
};