aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/scrumpy/webview.js
blob: 5037aeeef021e48f6686269dcb74059e54f7b4eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = Ferdium => {
  const getMessages = () => {
    const notifications = document.querySelector(
      '.c-notifications-dropdown__count',
    );
    if (notifications) {
      Ferdium.setBadge(notifications.textContent);
    }
  };

  Ferdium.loop(getMessages);
};