aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/sample_recipe/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/sample_recipe/webview.js')
-rw-r--r--scripts/sample_recipe/webview.js15
1 files changed, 7 insertions, 8 deletions
diff --git a/scripts/sample_recipe/webview.js b/scripts/sample_recipe/webview.js
index ddd0b40..53924f2 100644
--- a/scripts/sample_recipe/webview.js
+++ b/scripts/sample_recipe/webview.js
@@ -1,15 +1,14 @@
1"use strict"; 1var _path = _interopRequireDefault(require('path'));
2
3var _path = _interopRequireDefault(require("path"));
4 2
5function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
6 4
7module.exports = Ferdi => { 5module.exports = Ferdi => {
8 const getMessages = function getMessages() { 6 // TODO: If your SNAME service has unread messages, uncomment these lines to implement the logic for updating the badges
9 // TODO: Insert your notification-finding code here 7 // const getMessages = function getMessages() {
10 Ferdi.setBadge(0, 0); 8 // // TODO: Insert your notification-finding code here
11 }; 9 // Ferdi.setBadge(0, 0);
10 // };
11 // Ferdi.loop(getMessages);
12 12
13 Ferdi.loop(getMessages);
14 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css')); 13 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
15}; 14};