aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/eitaa/webview.js
diff options
context:
space:
mode:
authorLibravatar Muhammadhussein Ammari <xmha97@gmail.com>2024-05-26 05:58:16 +0330
committerLibravatar GitHub <noreply@github.com>2024-05-26 07:58:16 +0530
commite335a7c29864498896c6d3992cf67e510e78530e (patch)
tree7b1f2fb4afb008e0dbc1d71e38c32695c2318ea9 /recipes/eitaa/webview.js
parentFix formatting issue that was causing build failure (diff)
downloadferdium-recipes-e335a7c29864498896c6d3992cf67e510e78530e.tar.gz
ferdium-recipes-e335a7c29864498896c6d3992cf67e510e78530e.tar.zst
ferdium-recipes-e335a7c29864498896c6d3992cf67e510e78530e.zip
Add Iranian messengers: 'Bale' and 'Eitaa' (#551)
Diffstat (limited to 'recipes/eitaa/webview.js')
-rw-r--r--recipes/eitaa/webview.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/eitaa/webview.js b/recipes/eitaa/webview.js
new file mode 100644
index 0000000..2a81dec
--- /dev/null
+++ b/recipes/eitaa/webview.js
@@ -0,0 +1,16 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
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};