aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/misskey/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/misskey/webview.js')
-rw-r--r--recipes/misskey/webview.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/recipes/misskey/webview.js b/recipes/misskey/webview.js
index 554feb0..8c8dbc5 100644
--- a/recipes/misskey/webview.js
+++ b/recipes/misskey/webview.js
@@ -1,11 +1,19 @@
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 // check notification badge for Ferdium badge 9 // check notification badge for Ferdium badge
4 let hasNotification = !!document.querySelector( 10 const hasNotification = !!document.querySelector(
5 '#app div.notifications > button > i.circle', 11 '#app div.notifications > button > i.circle',
6 ); 12 );
7 Ferdium.setBadge(0, hasNotification ? 1 : 0); 13 Ferdium.setBadge(0, hasNotification ? 1 : 0);
8 }; 14 };
9 15
10 Ferdium.loop(getMessages); 16 Ferdium.loop(getMessages);
17
18 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
11}; 19};