aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/podio/webview.js
blob: 9ba40d071cfb33ecf478932afe345cd7237da340 (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 = Ferdium => {
  const getMessages = () => {
    const updates = document.querySelectorAll('.counter')[0].textContent;
    Ferdium.setBadge(updates, 0);
  };

  Ferdium.loop(getMessages);

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