aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/nextdoor/webview.js
diff options
context:
space:
mode:
authorLibravatar Jake Lee <github@jakelee.co.uk>2020-04-10 23:12:48 +0100
committerLibravatar Jake Lee <github@jakelee.co.uk>2020-04-10 23:12:48 +0100
commit9c9ebafaf4af21736a48bec17703b14d5302d352 (patch)
treef2c44ff5a1a68b8d4e33fca5eb0de1330fe4c82d /uncompressed/nextdoor/webview.js
parentFix accidental HTML tag (diff)
downloadferdium-recipes-9c9ebafaf4af21736a48bec17703b14d5302d352.tar.gz
ferdium-recipes-9c9ebafaf4af21736a48bec17703b14d5302d352.tar.zst
ferdium-recipes-9c9ebafaf4af21736a48bec17703b14d5302d352.zip
Add Nextdoor recipe
Diffstat (limited to 'uncompressed/nextdoor/webview.js')
-rw-r--r--uncompressed/nextdoor/webview.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/uncompressed/nextdoor/webview.js b/uncompressed/nextdoor/webview.js
new file mode 100644
index 0000000..2e27548
--- /dev/null
+++ b/uncompressed/nextdoor/webview.js
@@ -0,0 +1,10 @@
1"use strict";
2
3module.exports = Franz => {
4 const getMessages = function getMessages() {
5 const unread = document.getElementsByClassName('notification-badge')[0].innerText;
6 Franz.setBadge(parseInt(unread, 10));
7 };
8
9 Franz.loop(getMessages);
10}; \ No newline at end of file