aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/binance/webview.js
diff options
context:
space:
mode:
authorLibravatar Maitre_Oda <oda.alexandre31@gmail.com>2021-08-28 15:33:46 +0200
committerLibravatar GitHub <noreply@github.com>2021-08-28 19:03:46 +0530
commitbc4394d8f0f9a4efcf4217f900463d2dec12c96c (patch)
tree6681794856e95c49660441239b088694f04ce26e /recipes/binance/webview.js
parentNew recipe: ovh-cloud (#650) (diff)
downloadferdium-recipes-bc4394d8f0f9a4efcf4217f900463d2dec12c96c.tar.gz
ferdium-recipes-bc4394d8f0f9a4efcf4217f900463d2dec12c96c.tar.zst
ferdium-recipes-bc4394d8f0f9a4efcf4217f900463d2dec12c96c.zip
New recipe: binance (#645)
Diffstat (limited to 'recipes/binance/webview.js')
-rw-r--r--recipes/binance/webview.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/recipes/binance/webview.js b/recipes/binance/webview.js
new file mode 100644
index 0000000..2b16247
--- /dev/null
+++ b/recipes/binance/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 binance 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};