aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zenhub/webview.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-11-10 18:13:31 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-11-10 18:13:31 +0530
commitbe49a2626a471d33ac0803eb2b5afa1807e2e23e (patch)
treea4df2f05b9b060fb878519a1b18eb73e7963316b /recipes/zenhub/webview.js
parentRefactor mandatory files needed in each recipe (diff)
downloadferdium-recipes-be49a2626a471d33ac0803eb2b5afa1807e2e23e.tar.gz
ferdium-recipes-be49a2626a471d33ac0803eb2b5afa1807e2e23e.tar.zst
ferdium-recipes-be49a2626a471d33ac0803eb2b5afa1807e2e23e.zip
Added 'webview.js' as a mandatory file and fixed broken recipes
Diffstat (limited to 'recipes/zenhub/webview.js')
-rw-r--r--recipes/zenhub/webview.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/zenhub/webview.js b/recipes/zenhub/webview.js
new file mode 100644
index 0000000..86bb422
--- /dev/null
+++ b/recipes/zenhub/webview.js
@@ -0,0 +1,16 @@
1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
6
7module.exports = Ferdium => {
8 // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges
9 // const getMessages = () => {
10 // // TODO: Insert your notification-finding code here
11 // Ferdium.setBadge(0, 0);
12 // };
13 // Ferdium.loop(getMessages);
14
15 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
16};