aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pixieset/webview.js
blob: 913aa944834e97cfb1fd73b1efb528f86e203276 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
"use strict";

module.exports = (Ferdium) => {
  const getMessages = () => {
    const element = document.querySelector('.notification-count');
    Ferdium.setBadge(element ? Ferdium.safeParseInt(element.textContent.match(/\d+/)[0]) : 0);
  };

  Ferdium.loop(getMessages);
};