aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pulsesms/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/pulsesms/webview.js')
-rw-r--r--recipes/pulsesms/webview.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/recipes/pulsesms/webview.js b/recipes/pulsesms/webview.js
new file mode 100644
index 0000000..a4c7f43
--- /dev/null
+++ b/recipes/pulsesms/webview.js
@@ -0,0 +1,8 @@
1module.exports = (Franz) => {
2 function getMessages() {
3 Franz.setBadge(document.querySelector("#unread_count").innerHTML.replace(/\s/g,''));
4 }
5
6 // check for new messages every second and update Franz badge
7 Franz.loop(getMessages);
8};