aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/podio/webview.js
blob: 0a0c31ec9a84bfd015d7b7ba03d03b708136b12f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const _path = _interopRequireDefault(require('path'));

function _interopRequireDefault(obj) {
  return obj && obj.__esModule ? obj : { default: obj };
}

module.exports = Ferdi => {
  const getMessages = () => {
    const updates = document.querySelectorAll('.counter')[0].textContent;
    Ferdi.setBadge(updates, 0);
  };

  Ferdi.loop(getMessages);

  Ferdi.injectCSS(_path.default.join(__dirname, 'css', 'franz.css'));
};