aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/evernote/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/evernote/webview.js')
-rw-r--r--recipes/evernote/webview.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/recipes/evernote/webview.js b/recipes/evernote/webview.js
index 8178443..913d867 100644
--- a/recipes/evernote/webview.js
+++ b/recipes/evernote/webview.js
@@ -1,10 +1,14 @@
1const _path = _interopRequireDefault(require('path')); 1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
2 4
3function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } 5const _path = _interopRequireDefault(require('path'));
4 6
5module.exports = (Ferdium) => { 7module.exports = Ferdium => {
6 const getMessages = () => { 8 const getMessages = () => {
7 const inbox = document.querySelector('.topbar-notificationsButton.has-newNotifications'); 9 const inbox = document.querySelector(
10 '.topbar-notificationsButton.has-newNotifications',
11 );
8 const passiveCount = inbox === null ? 0 : 1; 12 const passiveCount = inbox === null ? 0 : 1;
9 Ferdium.setBadge(0, passiveCount); 13 Ferdium.setBadge(0, passiveCount);
10 }; 14 };