aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/roundcube/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/roundcube/webview.js')
-rw-r--r--recipes/roundcube/webview.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/roundcube/webview.js b/recipes/roundcube/webview.js
index 08c6a95..f9aead4 100644
--- a/recipes/roundcube/webview.js
+++ b/recipes/roundcube/webview.js
@@ -1,12 +1,12 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const directElements = document.querySelectorAll('.unreadcount'); 3 const directElements = document.querySelectorAll('.unreadcount');
4 let direct = 0; 4 let direct = 0;
5 for (const directElement of directElements) { 5 for (const directElement of directElements) {
6 direct += Ferdi.safeParseInt(directElement.textContent); 6 direct += Ferdium.safeParseInt(directElement.textContent);
7 } 7 }
8 Ferdi.setBadge(direct); 8 Ferdium.setBadge(direct);
9 }; 9 };
10 10
11 Ferdi.loop(getMessages); 11 Ferdium.loop(getMessages);
12}; 12};