aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/sample_recipe/webview.js
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2022-06-07 17:01:37 +0100
committerLibravatar GitHub <noreply@github.com>2022-06-07 16:01:37 +0000
commit54f3affd80401051db8464d6bed8ad4ed1e66fd1 (patch)
treed166ec91c97ec1220787c857f6e3c5004d13889b /scripts/sample_recipe/webview.js
parentAdd home assistant recipe (#47) (diff)
downloadferdium-recipes-54f3affd80401051db8464d6bed8ad4ed1e66fd1.tar.gz
ferdium-recipes-54f3affd80401051db8464d6bed8ad4ed1e66fd1.tar.zst
ferdium-recipes-54f3affd80401051db8464d6bed8ad4ed1e66fd1.zip
Add webview.js to some services that were generated without it. (#42)
This had blocked users from manually generating a `service.css` which is what the documentation recommends as self-help to override styling. Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
Diffstat (limited to 'scripts/sample_recipe/webview.js')
-rw-r--r--scripts/sample_recipe/webview.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/sample_recipe/webview.js b/scripts/sample_recipe/webview.js
index dc4a062..86bb422 100644
--- a/scripts/sample_recipe/webview.js
+++ b/scripts/sample_recipe/webview.js
@@ -1,8 +1,16 @@
1module.exports = () => { 1const _path = _interopRequireDefault(require('path'));
2
3function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj };
5}
6
7module.exports = Ferdium => {
2 // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges 8 // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges
3 // const getMessages = () => { 9 // const getMessages = () => {
4 // // TODO: Insert your notification-finding code here 10 // // TODO: Insert your notification-finding code here
5 // Ferdium.setBadge(0, 0); 11 // Ferdium.setBadge(0, 0);
6 // }; 12 // };
7 // Ferdium.loop(getMessages); 13 // Ferdium.loop(getMessages);
14
15 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
8}; 16};