aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pivotal-tracker/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/pivotal-tracker/webview.js')
-rw-r--r--recipes/pivotal-tracker/webview.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/recipes/pivotal-tracker/webview.js b/recipes/pivotal-tracker/webview.js
index ef1c8f1..cfc2ae4 100644
--- a/recipes/pivotal-tracker/webview.js
+++ b/recipes/pivotal-tracker/webview.js
@@ -1,8 +1,9 @@
1module.exports = (Ferdi) => { 1module.exports = (Ferdi) => {
2 function getMessages() { 2 function getMessages() {
3 const bell = document.querySelectorAll('#view65 > span')[0]; 3 const bell = document.querySelectorAll('#view65 > span')[0];
4 counter = parseInt(bell.innerText); 4 if (bell) {
5 Ferdi.setBadge(counter); 5 Ferdi.setBadge(bell.innerText);
6 }
6 } 7 }
7 8
8 Ferdi.loop(getMessages); 9 Ferdi.loop(getMessages);