aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nextcloud/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/nextcloud/webview.js')
-rw-r--r--recipes/nextcloud/webview.js18
1 files changed, 13 insertions, 5 deletions
diff --git a/recipes/nextcloud/webview.js b/recipes/nextcloud/webview.js
index cb13e02..e42f10a 100644
--- a/recipes/nextcloud/webview.js
+++ b/recipes/nextcloud/webview.js
@@ -1,13 +1,21 @@
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 const getMessages = () => { 8 const getMessages = () => {
3 const direct = document.querySelector( 9 const direct = document
4 '#header-menu-notifications, .notifications' 10 .querySelector('#header-menu-notifications, .notifications')
5 ).querySelectorAll( 11 .querySelectorAll(
6 '.notification-container .notification-wrapper .notification' 12 '.notification-container .notification-wrapper .notification',
7 ).length; 13 ).length;
8 14
9 Ferdium.setBadge(direct); 15 Ferdium.setBadge(direct);
10 }; 16 };
11 17
12 Ferdium.loop(getMessages); 18 Ferdium.loop(getMessages);
19
20 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
13}; 21};