aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/confluence
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-18 06:51:50 -0500
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-18 06:51:50 -0500
commit18801ed0c02627e87639dc0848cab44dacc18be2 (patch)
tree15e56ba66c68bf7b4594e6c9fdef44e037b4be31 /recipes/confluence
parentRemove deprecated webPreference flag (diff)
downloadferdium-recipes-18801ed0c02627e87639dc0848cab44dacc18be2.tar.gz
ferdium-recipes-18801ed0c02627e87639dc0848cab44dacc18be2.tar.zst
ferdium-recipes-18801ed0c02627e87639dc0848cab44dacc18be2.zip
Rebranded from 'ferdi' to 'ferdium' (companion changes for the main repo PR #2)
Diffstat (limited to 'recipes/confluence')
-rw-r--r--recipes/confluence/index.js2
-rw-r--r--recipes/confluence/package.json2
-rw-r--r--recipes/confluence/webview.js8
3 files changed, 6 insertions, 6 deletions
diff --git a/recipes/confluence/index.js b/recipes/confluence/index.js
index 23607bd..dd41f72 100644
--- a/recipes/confluence/index.js
+++ b/recipes/confluence/index.js
@@ -1 +1 @@
module.exports = Ferdi => Ferdi; module.exports = Ferdium => Ferdium;
diff --git a/recipes/confluence/package.json b/recipes/confluence/package.json
index 42873ee..4d2c8cf 100644
--- a/recipes/confluence/package.json
+++ b/recipes/confluence/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "confluence", 2 "id": "confluence",
3 "name": "Confluence", 3 "name": "Confluence",
4 "version": "1.0.0", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "hasCustomUrl": true 7 "hasCustomUrl": true
diff --git a/recipes/confluence/webview.js b/recipes/confluence/webview.js
index 25126e7..e5d319c 100644
--- a/recipes/confluence/webview.js
+++ b/recipes/confluence/webview.js
@@ -1,8 +1,8 @@
1module.exports = Ferdi => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const unreadMessageCountElement = document.querySelector('#notifications-anchor .badge'); 3 const unreadMessageCountElement = document.querySelector('#notifications-anchor .badge');
4 const unreadMessagesCount = Ferdi.safeParseInt(unreadMessageCountElement.textContent); 4 const unreadMessagesCount = Ferdium.safeParseInt(unreadMessageCountElement.textContent);
5 Ferdi.setBadge(unreadMessagesCount, 0); 5 Ferdium.setBadge(unreadMessagesCount, 0);
6 }; 6 };
7 Ferdi.loop(getMessages); 7 Ferdium.loop(getMessages);
8}; 8};