aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/podio/webview.js
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/podio/webview.js
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/podio/webview.js')
-rw-r--r--recipes/podio/webview.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes/podio/webview.js b/recipes/podio/webview.js
index 0a0c31e..9ba40d0 100644
--- a/recipes/podio/webview.js
+++ b/recipes/podio/webview.js
@@ -4,13 +4,13 @@ function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj }; 4 return obj && obj.__esModule ? obj : { default: obj };
5} 5}
6 6
7module.exports = Ferdi => { 7module.exports = Ferdium => {
8 const getMessages = () => { 8 const getMessages = () => {
9 const updates = document.querySelectorAll('.counter')[0].textContent; 9 const updates = document.querySelectorAll('.counter')[0].textContent;
10 Ferdi.setBadge(updates, 0); 10 Ferdium.setBadge(updates, 0);
11 }; 11 };
12 12
13 Ferdi.loop(getMessages); 13 Ferdium.loop(getMessages);
14 14
15 Ferdi.injectCSS(_path.default.join(__dirname, 'css', 'franz.css')); 15 Ferdium.injectCSS(_path.default.join(__dirname, 'css', 'franz.css'));
16}; 16};