aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud-cospend/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/nextcloud-cospend/webview.js')
-rw-r--r--recipes/nextcloud-cospend/webview.js14
1 files changed, 10 insertions, 4 deletions
diff --git a/recipes/nextcloud-cospend/webview.js b/recipes/nextcloud-cospend/webview.js
index b3836a7..5832e75 100644
--- a/recipes/nextcloud-cospend/webview.js
+++ b/recipes/nextcloud-cospend/webview.js
@@ -1,18 +1,24 @@
1const _path = _interopRequireDefault(require('path')); 1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
2 4
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 5const _path = _interopRequireDefault(require('path'));
4 6
5module.exports = Ferdium => { 7module.exports = Ferdium => {
6 const getMessages = () => { 8 const getMessages = () => {
7 const directSelector = document.querySelectorAll( 9 const directSelector = document.querySelectorAll(
8 '.app-navigation-entry-utils-counter.highlighted', 10 '.app-navigation-entry-utils-counter.highlighted',
9 ); 11 );
10 const direct = directSelector ? Ferdium.safeParseInt(directSelector.length) : 0; 12 const direct = directSelector
13 ? Ferdium.safeParseInt(directSelector.length)
14 : 0;
11 15
12 const indirectSelector = document.querySelectorAll( 16 const indirectSelector = document.querySelectorAll(
13 '.app-navigation-entry-utils-counter:not(.highlighted)', 17 '.app-navigation-entry-utils-counter:not(.highlighted)',
14 ); 18 );
15 const indirect = indirectSelector ? Ferdium.safeParseInt(indirectSelector.length) : 0; 19 const indirect = indirectSelector
20 ? Ferdium.safeParseInt(indirectSelector.length)
21 : 0;
16 22
17 Ferdium.setBadge(direct, indirect); 23 Ferdium.setBadge(direct, indirect);
18 }; 24 };