aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/jira/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/jira/webview.js')
-rw-r--r--recipes/jira/webview.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/jira/webview.js b/recipes/jira/webview.js
new file mode 100644
index 0000000..42d32e8
--- /dev/null
+++ b/recipes/jira/webview.js
@@ -0,0 +1,16 @@
1"use strict";
2
3module.exports = (Franz) => {
4 const getMessages = function getMessages() {
5 // get unread messages
6 let element = document.querySelector('#atlassian-navigation-notification-count span');
7 let count = element ? element.innerText : 0;
8 count = parseInt(count, 10);
9
10 // set Franz badge
11 Franz.setBadge(count);
12 };
13
14 // check for new messages every second and update Franz badge
15 Franz.loop(getMessages);
16}; \ No newline at end of file