aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/docker/webview.js
diff options
context:
space:
mode:
authorLibravatar Maitre_Oda <oda.alexandre31@gmail.com>2021-08-28 13:09:31 +0200
committerLibravatar GitHub <noreply@github.com>2021-08-28 16:39:31 +0530
commit3e9946634d42d34c86a845e9887a659963e233d4 (patch)
tree9129fe6737fa63256f8c456f186081413e952359 /recipes/docker/webview.js
parentNew recipe: bitwarden (#647) (diff)
downloadferdium-recipes-3e9946634d42d34c86a845e9887a659963e233d4.tar.gz
ferdium-recipes-3e9946634d42d34c86a845e9887a659963e233d4.tar.zst
ferdium-recipes-3e9946634d42d34c86a845e9887a659963e233d4.zip
New recipe: docker (docker hub) (#644)
Co-authored-by: oda-alexandre <oda-alexandre31@gmail.com> Co-authored-by: Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>
Diffstat (limited to 'recipes/docker/webview.js')
-rw-r--r--recipes/docker/webview.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/recipes/docker/webview.js b/recipes/docker/webview.js
new file mode 100644
index 0000000..1fd69e8
--- /dev/null
+++ b/recipes/docker/webview.js
@@ -0,0 +1,14 @@
1var _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4
5module.exports = Ferdi => {
6 // TODO: If your docker hub service has unread messages, uncomment these lines to implement the logic for updating the badges
7 // const getMessages = function getMessages() {
8 // // TODO: Insert your notification-finding code here
9 // Ferdi.setBadge(0, 0);
10 // };
11 // Ferdi.loop(getMessages);
12
13 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
14};