aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/monday/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/monday/webview.js')
-rwxr-xr-xrecipes/monday/webview.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/recipes/monday/webview.js b/recipes/monday/webview.js
index aa0d9a8..388e5bd 100755
--- a/recipes/monday/webview.js
+++ b/recipes/monday/webview.js
@@ -2,20 +2,20 @@ 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 let count = 0; 7 let count = 0;
8 8
9 const counters = document.querySelectorAll('.surface-control-component .item-counter, .surface-control-component .view-item-counter'); 9 const counters = document.querySelectorAll('.surface-control-component .item-counter, .surface-control-component .view-item-counter');
10 10
11 for (const counter of counters) { 11 for (const counter of counters) {
12 count += Ferdi.safeParseInt(counter.textContent); 12 count += Ferdium.safeParseInt(counter.textContent);
13 } 13 }
14 14
15 Ferdi.setBadge(count); 15 Ferdium.setBadge(count);
16 }; 16 };
17 17
18 Ferdi.loop(getMessages); 18 Ferdium.loop(getMessages);
19 19
20 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css')); 20 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
21}; 21};