aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/fastmail/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/fastmail/webview.js')
-rw-r--r--recipes/fastmail/webview.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/recipes/fastmail/webview.js b/recipes/fastmail/webview.js
index 5355dbe..46bad0d 100644
--- a/recipes/fastmail/webview.js
+++ b/recipes/fastmail/webview.js
@@ -1,15 +1,18 @@
1const path = require('path'); 1const _path = _interopRequireDefault(require('path'));
2 2
3module.exports = (Franz) => { 3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
4
5module.exports = (Ferdi) => {
4 const getMessages = () => { 6 const getMessages = () => {
5 const inbox = document.querySelector('.v-MailboxSource--inbox .v-MailboxSource-badge'); 7 const inbox = document.querySelector('.v-MailboxSource--inbox .v-MailboxSource-badge');
6 if (!inbox) { 8 if (!inbox) {
7 return; 9 return;
8 } 10 }
9 const messages = Number(inbox.innerText); 11 const messages = Number(inbox.innerText);
10 Franz.setBadge(messages); 12 Ferdi.setBadge(messages);
11 }; 13 };
12 14
13 Franz.injectJSUnsafe(path.join(__dirname, 'webview-unsafe.js')); 15 Ferdi.loop(getMessages);
14 Franz.loop(getMessages); 16
17 Ferdi.injectJSUnsafe(_path.default.join(__dirname, 'webview-unsafe.js'));
15}; 18};