aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/todoist/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/todoist/webview.js')
-rw-r--r--recipes/todoist/webview.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/recipes/todoist/webview.js b/recipes/todoist/webview.js
index 27b77ad..32dc1f2 100644
--- a/recipes/todoist/webview.js
+++ b/recipes/todoist/webview.js
@@ -1,3 +1,9 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
1module.exports = Ferdium => { 7module.exports = Ferdium => {
2 function getTasks() { 8 function getTasks() {
3 let todayCount = 0; 9 let todayCount = 0;
@@ -17,4 +23,6 @@ module.exports = Ferdium => {
17 } 23 }
18 24
19 Ferdium.loop(getTasks); 25 Ferdium.loop(getTasks);
26
27 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
20}; 28};