aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/mstodo/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/mstodo/webview.js')
-rw-r--r--recipes/mstodo/webview.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/recipes/mstodo/webview.js b/recipes/mstodo/webview.js
index 1692a4d..960e4bb 100644
--- a/recipes/mstodo/webview.js
+++ b/recipes/mstodo/webview.js
@@ -2,7 +2,7 @@ const _path = _interopRequireDefault(require('path'));
2 2
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4 4
5module.exports = Ferdi => { 5module.exports = Ferdium => {
6 const getMessages = () => { 6 const getMessages = () => {
7 const elements = document.querySelectorAll('.taskItem'); 7 const elements = document.querySelectorAll('.taskItem');
8 let count = 0; 8 let count = 0;
@@ -13,11 +13,11 @@ module.exports = Ferdi => {
13 } 13 }
14 } 14 }
15 15
16 // set Ferdi badge 16 // set Ferdium badge
17 Ferdi.setBadge(count); 17 Ferdium.setBadge(count);
18 }; 18 };
19 19
20 Ferdi.loop(getMessages); 20 Ferdium.loop(getMessages);
21 21
22 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css')); 22 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
23}; 23};