aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed
diff options
context:
space:
mode:
authorLibravatar Daniele Lenares <daniele.lenares@gmail.com>2020-05-06 17:31:06 +0200
committerLibravatar Daniele Lenares <daniele.lenares@gmail.com>2020-05-06 17:31:06 +0200
commit5ad19c79dc5747d70080eba99c2d95487dac9521 (patch)
treee5f2437522067cae618c621a60bd60441f0deabc /uncompressed
parentAdd Clubhouse recipe (diff)
downloadferdium-recipes-5ad19c79dc5747d70080eba99c2d95487dac9521.tar.gz
ferdium-recipes-5ad19c79dc5747d70080eba99c2d95487dac9521.tar.zst
ferdium-recipes-5ad19c79dc5747d70080eba99c2d95487dac9521.zip
Bump Clubhouse to 1.0.1
Diffstat (limited to 'uncompressed')
-rw-r--r--uncompressed/clubhouse/package.json4
-rw-r--r--uncompressed/clubhouse/webview.js3
2 files changed, 3 insertions, 4 deletions
diff --git a/uncompressed/clubhouse/package.json b/uncompressed/clubhouse/package.json
index f21948a..ce49f10 100644
--- a/uncompressed/clubhouse/package.json
+++ b/uncompressed/clubhouse/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "clubhouse", 2 "id": "clubhouse",
3 "name": "Clubhouse", 3 "name": "Clubhouse",
4 "version": "1.0.0", 4 "version": "1.0.1",
5 "description": "Project Management for Software Teams", 5 "description": "Project Management for Software Teams",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Daniele Lenares <daniele.lenares@gmail.com>", 7 "author": "Daniele Lenares <daniele.lenares@gmail.com>",
@@ -11,4 +11,4 @@
11 "serviceURL": "https://app.clubhouse.io/{teamId}/dashboard", 11 "serviceURL": "https://app.clubhouse.io/{teamId}/dashboard",
12 "hasTeamId": true 12 "hasTeamId": true
13 } 13 }
14} \ No newline at end of file 14}
diff --git a/uncompressed/clubhouse/webview.js b/uncompressed/clubhouse/webview.js
index b16ab05..51cd09d 100644
--- a/uncompressed/clubhouse/webview.js
+++ b/uncompressed/clubhouse/webview.js
@@ -1,9 +1,8 @@
1module.exports = (Ferdi) => { 1module.exports = (Ferdi) => {
2 function getMessages() { 2 function getMessages() {
3 let unread = 0;
4 const hasNotifications = document.querySelector('#notifications-link .badge').classList.contains('visible'); 3 const hasNotifications = document.querySelector('#notifications-link .badge').classList.contains('visible');
5 if (hasNotifications) { 4 if (hasNotifications) {
6 Ferdi.setBadge(1); 5 Ferdi.setBadge(0, 1);
7 } 6 }
8 } 7 }
9 8