aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/firefly/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/firefly/webview.js')
-rw-r--r--recipes/firefly/webview.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/recipes/firefly/webview.js b/recipes/firefly/webview.js
new file mode 100644
index 0000000..2a81dec
--- /dev/null
+++ b/recipes/firefly/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};