aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud/webview.js
blob: cb13e0238a7a7cf47fd34dd7f450d2ab84ef62cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = Ferdium => {
  const getMessages = () => {
    const direct = document.querySelector(
      '#header-menu-notifications, .notifications'
    ).querySelectorAll(
      '.notification-container .notification-wrapper .notification'
    ).length;

    Ferdium.setBadge(direct);
  };

  Ferdium.loop(getMessages);
};