aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/protonet
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/protonet')
-rwxr-xr-xrecipes/protonet/package.json2
-rwxr-xr-xrecipes/protonet/webview.js18
2 files changed, 16 insertions, 4 deletions
diff --git a/recipes/protonet/package.json b/recipes/protonet/package.json
index a876339..f5a06f8 100755
--- a/recipes/protonet/package.json
+++ b/recipes/protonet/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "protonet", 2 "id": "protonet",
3 "name": "protonet", 3 "name": "protonet",
4 "version": "1.2.0", 4 "version": "1.3.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://{teamID}.protonet.info", 7 "serviceURL": "https://{teamID}.protonet.info",
diff --git a/recipes/protonet/webview.js b/recipes/protonet/webview.js
index 4ec9f78..71c0d0f 100755
--- a/recipes/protonet/webview.js
+++ b/recipes/protonet/webview.js
@@ -1,10 +1,22 @@
1module.exports = (Ferdium) => { 1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
7module.exports = Ferdium => {
2 const getMessages = () => { 8 const getMessages = () => {
3 const unreadPrivateMessages = Ferdium.safeParseInt($('.messages .unread-meeps').text()); 9 const unreadPrivateMessages = Ferdium.safeParseInt(
4 const unreadGroupMessages = Ferdium.safeParseInt($('.today .unread-meeps').text()); 10 $('.messages .unread-meeps').text(),
11 );
12 const unreadGroupMessages = Ferdium.safeParseInt(
13 $('.today .unread-meeps').text(),
14 );
5 15
6 Ferdium.setBadge(unreadPrivateMessages + unreadGroupMessages); 16 Ferdium.setBadge(unreadPrivateMessages + unreadGroupMessages);
7 }; 17 };
8 18
9 Ferdium.loop(getMessages); 19 Ferdium.loop(getMessages);
20
21 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
10}; 22};