aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/kaizala/webview.js
blob: 17ead54a991011f12daf7126b3742427d7484a9d (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = Ferdi => {
  const getMessages = function getMessages() {
    const count = document.querySelectorAll('.unseen-msg-count').length;
    Ferdi.setBadge(count);
  };

  Ferdi.loop(getMessages);
};