aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/pixieset
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/pixieset')
-rw-r--r--recipes/pixieset/package.json2
-rw-r--r--recipes/pixieset/webview.js14
2 files changed, 12 insertions, 4 deletions
diff --git a/recipes/pixieset/package.json b/recipes/pixieset/package.json
index 773f37a..37d70f3 100644
--- a/recipes/pixieset/package.json
+++ b/recipes/pixieset/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "pixieset", 2 "id": "pixieset",
3 "name": "Pixieset", 3 "name": "Pixieset",
4 "version": "1.0.0", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://accounts.pixieset.com/dashboard/" 7 "serviceURL": "https://accounts.pixieset.com/dashboard/"
diff --git a/recipes/pixieset/webview.js b/recipes/pixieset/webview.js
index 913aa94..88c9263 100644
--- a/recipes/pixieset/webview.js
+++ b/recipes/pixieset/webview.js
@@ -1,10 +1,18 @@
1"use strict"; 1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
2 4
3module.exports = (Ferdium) => { 5const _path = _interopRequireDefault(require('path'));
6
7module.exports = Ferdium => {
4 const getMessages = () => { 8 const getMessages = () => {
5 const element = document.querySelector('.notification-count'); 9 const element = document.querySelector('.notification-count');
6 Ferdium.setBadge(element ? Ferdium.safeParseInt(element.textContent.match(/\d+/)[0]) : 0); 10 Ferdium.setBadge(
11 element ? Ferdium.safeParseInt(element.textContent.match(/\d+/)[0]) : 0,
12 );
7 }; 13 };
8 14
9 Ferdium.loop(getMessages); 15 Ferdium.loop(getMessages);
16
17 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
10}; 18};