aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fleep
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/fleep')
-rw-r--r--recipes/fleep/webview.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/recipes/fleep/webview.js b/recipes/fleep/webview.js
index f3d765d..46fe2c5 100644
--- a/recipes/fleep/webview.js
+++ b/recipes/fleep/webview.js
@@ -1,13 +1,11 @@
1"use strict"; 1const _path = _interopRequireDefault(require('path'));
2
3var _path = _interopRequireDefault(require("path"));
4 2
5function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
6 4
7module.exports = Ferdi => { 5module.exports = Ferdi => {
8 const getMessages = function getMessages() { 6 const getMessages = function getMessages() {
9 // Count number of conversations or teams with unread messages 7 // Count number of conversations or teams with unread messages
10 let count = document.querySelectorAll(".unread-count").length; 8 const count = document.querySelectorAll('.unread-count').length;
11 Ferdi.setBadge(count, 0); 9 Ferdi.setBadge(count, 0);
12 }; 10 };
13 11