aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/confluence/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/confluence/webview.js')
-rw-r--r--recipes/confluence/webview.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/confluence/webview.js b/recipes/confluence/webview.js
index 25126e7..e5d319c 100644
--- a/recipes/confluence/webview.js
+++ b/recipes/confluence/webview.js
@@ -1,8 +1,8 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const unreadMessageCountElement = document.querySelector('#notifications-anchor .badge'); 3 const unreadMessageCountElement = document.querySelector('#notifications-anchor .badge');
4 const unreadMessagesCount = Ferdi.safeParseInt(unreadMessageCountElement.textContent); 4 const unreadMessagesCount = Ferdium.safeParseInt(unreadMessageCountElement.textContent);
5 Ferdi.setBadge(unreadMessagesCount, 0); 5 Ferdium.setBadge(unreadMessagesCount, 0);
6 }; 6 };
7 Ferdi.loop(getMessages); 7 Ferdium.loop(getMessages);
8}; 8};