aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/scrumpy/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/scrumpy/webview.js')
-rw-r--r--recipes/scrumpy/webview.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/recipes/scrumpy/webview.js b/recipes/scrumpy/webview.js
index 5c762e4..46f6424 100644
--- a/recipes/scrumpy/webview.js
+++ b/recipes/scrumpy/webview.js
@@ -1,8 +1,12 @@
1module.exports = Ferdi => { 1module.exports = Ferdi => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const notifications = document.querySelector('.c-notifications-dropdown__count') 3 const notifications = document.querySelector(
4 Ferdi.setBadge(notifications.innerText); 4 '.c-notifications-dropdown__count',
5 }; 5 );
6 if (notifications) {
7 Ferdi.setBadge(notifications.textContent);
8 }
9 };
6 10
7 Ferdi.loop(getMessages); 11 Ferdi.loop(getMessages);
8}; 12};