aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/clubhouse/webview.js
blob: bcb028191d8b152786fa7de1c42279fb81632b0a (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = (Ferdium) => {
  const getMessages = () => {
    const hasNotifications = document.querySelector('#notifications-link .badge').classList.contains('visible');
    Ferdium.setBadge(0, hasNotifications ? 1 : 0);
  }

  Ferdium.loop(getMessages);
};