aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/icq/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/icq/webview.js')
-rw-r--r--recipes/icq/webview.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/recipes/icq/webview.js b/recipes/icq/webview.js
index c0ba8e9..e5b4e60 100644
--- a/recipes/icq/webview.js
+++ b/recipes/icq/webview.js
@@ -1,3 +1,9 @@
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 let directs = 0; 9 let directs = 0;
@@ -7,7 +13,7 @@ module.exports = Ferdium => {
7 for (const element of elements) { 13 for (const element of elements) {
8 if ( 14 if (
9 Ferdium.safeParseInt( 15 Ferdium.safeParseInt(
10 element.textContent && element.textContent.replace(/[^\d.]/g, ''), 16 element.textContent && element.textContent.replaceAll(/[^\d.]/g, ''),
11 ) > 0 17 ) > 0
12 ) { 18 ) {
13 directs += 1; // count 1 per channel with messages 19 directs += 1; // count 1 per channel with messages
@@ -18,4 +24,6 @@ module.exports = Ferdium => {
18 }; 24 };
19 25
20 Ferdium.loop(getMessages); 26 Ferdium.loop(getMessages);
27
28 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
21}; 29};