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

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

module.exports = (Ferdi) => {
  const getMessages = () => {
    const unreadNotifications = parseInt(document.getElementById('notifications_amount').innerHTML);
    Ferdi.setBadge(unreadNotifications);
  };

  Ferdi.loop(getMessages);

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