aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/anydo
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/anydo')
-rw-r--r--recipes/anydo/package.json2
-rw-r--r--recipes/anydo/webview.js8
2 files changed, 9 insertions, 1 deletions
diff --git a/recipes/anydo/package.json b/recipes/anydo/package.json
index 51a5646..e90adb0 100644
--- a/recipes/anydo/package.json
+++ b/recipes/anydo/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "anydo", 2 "id": "anydo",
3 "name": "Any.do", 3 "name": "Any.do",
4 "version": "1.2.1", 4 "version": "1.3.0",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/chappy84/recipe-anydo", 6 "repository": "https://github.com/chappy84/recipe-anydo",
7 "config": { 7 "config": {
diff --git a/recipes/anydo/webview.js b/recipes/anydo/webview.js
index 8d0f2ca..3f14c14 100644
--- a/recipes/anydo/webview.js
+++ b/recipes/anydo/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 incompleteCount = 0; 9 let incompleteCount = 0;
@@ -16,4 +22,6 @@ module.exports = Ferdium => {
16 } 22 }
17 23
18 Ferdium.loop(getTasks); 24 Ferdium.loop(getTasks);
25
26 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
19}; 27};