aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/teamleader/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/teamleader/webview.js')
-rw-r--r--recipes/teamleader/webview.js13
1 files changed, 7 insertions, 6 deletions
diff --git a/recipes/teamleader/webview.js b/recipes/teamleader/webview.js
index 2de8e1c..3041463 100644
--- a/recipes/teamleader/webview.js
+++ b/recipes/teamleader/webview.js
@@ -1,13 +1,14 @@
1const path = require('path'); 1const _path = _interopRequireDefault(require('path'));
2 2
3module.exports = (Franz, options) => { 3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4
5module.exports = (Ferdi) => {
4 const getMessages = () => { 6 const getMessages = () => {
5 const unreadNotifications = parseInt(document.getElementById('notifications_amount').innerHTML); 7 const unreadNotifications = parseInt(document.getElementById('notifications_amount').innerHTML);
6 8 Ferdi.setBadge(unreadNotifications);
7 Franz.setBadge(unreadNotifications);
8 }; 9 };
9 10
10 Franz.loop(getMessages); 11 Ferdi.loop(getMessages);
11 12
12 Franz.injectCSS(path.join(__dirname, 'css', 'franz.css')); 13 Ferdi.injectCSS(_path.default.join(__dirname, 'css', 'franz.css'));
13}; 14};