aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/vk/webview.js
blob: e48866f27d4fb6d682e810461129c76650300a24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = Ferdi => {
  const getMessages = function getMessages() {
    let directs = 0;
    if (document.getElementsByClassName('left_count').length > 0) {
      directs = parseInt(document.getElementsByClassName('left_count')[0].innerText, 10);
    }

    Ferdi.setBadge(directs);
  };

  Ferdi.loop(getMessages);
};