aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/stackoverflow
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/stackoverflow
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/stackoverflow')
-rw-r--r--recipes/stackoverflow/index.js2
-rw-r--r--recipes/stackoverflow/package.json2
-rw-r--r--recipes/stackoverflow/webview.js8
3 files changed, 6 insertions, 6 deletions
diff --git a/recipes/stackoverflow/index.js b/recipes/stackoverflow/index.js
index 23607bd..dd41f72 100644
--- a/recipes/stackoverflow/index.js
+++ b/recipes/stackoverflow/index.js
@@ -1 +1 @@
module.exports = Ferdi => Ferdi; module.exports = Ferdium => Ferdium;
diff --git a/recipes/stackoverflow/package.json b/recipes/stackoverflow/package.json
index 9b40791..747bfb8 100644
--- a/recipes/stackoverflow/package.json
+++ b/recipes/stackoverflow/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "stackoverflow", 2 "id": "stackoverflow",
3 "name": "Stack Overflow", 3 "name": "Stack Overflow",
4 "version": "0.0.3", 4 "version": "0.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/christianascone/franz-recipe-stackoverflow", 6 "repository": "https://github.com/christianascone/franz-recipe-stackoverflow",
7 "config": { 7 "config": {
diff --git a/recipes/stackoverflow/webview.js b/recipes/stackoverflow/webview.js
index 83fd5dd..0da8914 100644
--- a/recipes/stackoverflow/webview.js
+++ b/recipes/stackoverflow/webview.js
@@ -2,7 +2,7 @@ const _path = _interopRequireDefault(require('path'));
2 2
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4 4
5module.exports = (Ferdi) => { 5module.exports = (Ferdium) => {
6 const getMessages = () => { 6 const getMessages = () => {
7 const elements = document.querySelectorAll('.CxUIE, .unread'); 7 const elements = document.querySelectorAll('.CxUIE, .unread');
8 let count = 0; 8 let count = 0;
@@ -12,9 +12,9 @@ module.exports = (Ferdi) => {
12 } 12 }
13 } 13 }
14 14
15 Ferdi.setBadge(count); 15 Ferdium.setBadge(count);
16 }; 16 };
17 17
18 Ferdi.loop(getMessages); 18 Ferdium.loop(getMessages);
19 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css')); 19 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
20}; 20};