aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/xing/webview.js
blob: 97daed23d8d83a8f8537b77f53d461b044468b24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = Ferdi => {
  function getUnreadConversations() {
    let unreadConversations = 0;
    unreadConversations = parseInt(document.querySelector('#unread-conversations').innerHTML, 10);

    Ferdi.setBadge(unreadConversations);
  }

  Ferdi.loop(getUnreadConversations);
};