From 5438c4606943d02c3286af727d3b483a9a290768 Mon Sep 17 00:00:00 2001 From: André Oliveira <37463445+SpecialAro@users.noreply.github.com> Date: Thu, 19 Oct 2023 01:23:01 +0100 Subject: Add multiple recipes (#444) --- recipes/invoice-ninja/webview.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 recipes/invoice-ninja/webview.js (limited to 'recipes/invoice-ninja/webview.js') diff --git a/recipes/invoice-ninja/webview.js b/recipes/invoice-ninja/webview.js new file mode 100644 index 0000000..2a81dec --- /dev/null +++ b/recipes/invoice-ninja/webview.js @@ -0,0 +1,16 @@ +function _interopRequireDefault(obj) { + return obj && obj.__esModule ? obj : { default: obj }; +} + +const _path = _interopRequireDefault(require('path')); + +module.exports = Ferdium => { + // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges + // const getMessages = () => { + // // TODO: Insert your notification-finding code here + // Ferdium.setBadge(0, 0); + // }; + // Ferdium.loop(getMessages); + + Ferdium.injectCSS(_path.default.join(__dirname, 'service.css')); +}; -- cgit v1.2.3-54-g00ecf