aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/cinny/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/cinny/webview.js')
-rw-r--r--recipes/cinny/webview.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/recipes/cinny/webview.js b/recipes/cinny/webview.js
index f4fd306..c17cc79 100644
--- a/recipes/cinny/webview.js
+++ b/recipes/cinny/webview.js
@@ -1,3 +1,9 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
1module.exports = Ferdium => { 7module.exports = Ferdium => {
2 function getMessages() { 8 function getMessages() {
3 // Number of messages from rooms which has "All Messages" notifications enabled or when mentionned in a room with "Mentions & Keyword" notifications level. 9 // Number of messages from rooms which has "All Messages" notifications enabled or when mentionned in a room with "Mentions & Keyword" notifications level.
@@ -9,7 +15,7 @@ module.exports = Ferdium => {
9 const badges = document.querySelectorAll('.sidebar .notification-badge'); 15 const badges = document.querySelectorAll('.sidebar .notification-badge');
10 for (const badge of badges) { 16 for (const badge of badges) {
11 if (badge.childNodes.length === 0) { 17 if (badge.childNodes.length === 0) {
12 indirectCount++; 18 indirectCount += 1;
13 } else { 19 } else {
14 directCount += Ferdium.safeParseInt(badge.childNodes[0].textContent); 20 directCount += Ferdium.safeParseInt(badge.childNodes[0].textContent);
15 } 21 }
@@ -19,4 +25,6 @@ module.exports = Ferdium => {
19 Ferdium.setBadge(directCount, indirectCount); 25 Ferdium.setBadge(directCount, indirectCount);
20 } 26 }
21 Ferdium.loop(getMessages); 27 Ferdium.loop(getMessages);
28
29 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
22}; 30};