aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zalo/webview.js
blob: 2966ca16ca2d76ea5e645f4e2273ea8e626449a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = Ferdi => {
  const getMessages = function getMessages() {
    const unread = 0;
    const notificationBadge = document.getElementsByClassName('tab-red-dot').length;
    Ferdi.setBadge(notificationBadge);
  };

  Ferdi.loop(getMessages);
};