aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zoho-projects/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/zoho-projects/webview.js')
-rw-r--r--recipes/zoho-projects/webview.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/recipes/zoho-projects/webview.js b/recipes/zoho-projects/webview.js
index 2d2d85f..14e4688 100644
--- a/recipes/zoho-projects/webview.js
+++ b/recipes/zoho-projects/webview.js
@@ -1,8 +1,16 @@
1module.exports = () => { 1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
7module.exports = Ferdium => {
2 // TODO: If your Zoho Projects service has unread messages, uncomment these lines to implement the logic for updating the badges 8 // TODO: If your Zoho Projects 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};