aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/hostnet/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/hostnet/webview.js')
-rw-r--r--recipes/hostnet/webview.js15
1 files changed, 14 insertions, 1 deletions
diff --git a/recipes/hostnet/webview.js b/recipes/hostnet/webview.js
index 9a1266f..a2149d7 100644
--- a/recipes/hostnet/webview.js
+++ b/recipes/hostnet/webview.js
@@ -1,7 +1,20 @@
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 Ferdium.setBadge(Ferdium.safeParseInt(document.querySelectorAll('.badge.topbar-launcherbadge')[0].firstChild.data)); 9 Ferdium.setBadge(
10 Ferdium.safeParseInt(
11 document.querySelectorAll('.badge.topbar-launcherbadge')[0].firstChild
12 .data,
13 ),
14 );
4 }; 15 };
5 16
6 Ferdium.loop(getMessages); 17 Ferdium.loop(getMessages);
18
19 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
7}; 20};