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

  Ferdi.loop(getMessages);
}