aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/onenote/webview.js
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2020-10-04 16:38:36 +0200
committerLibravatar Bennett <hello@vantezzen.io>2020-10-04 16:38:36 +0200
commit6c0449e4e524f26d392c84ea0dcab8d43d19f042 (patch)
treec808bf6bf2c4e349ee94bfd7535420b2c8dc8639 /recipes/onenote/webview.js
parentAdd iCloud Reminders (diff)
downloadferdium-recipes-6c0449e4e524f26d392c84ea0dcab8d43d19f042.tar.gz
ferdium-recipes-6c0449e4e524f26d392c84ea0dcab8d43d19f042.tar.zst
ferdium-recipes-6c0449e4e524f26d392c84ea0dcab8d43d19f042.zip
Add OneNote
Diffstat (limited to 'recipes/onenote/webview.js')
-rw-r--r--recipes/onenote/webview.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes/onenote/webview.js b/recipes/onenote/webview.js
new file mode 100644
index 0000000..ddd0b40
--- /dev/null
+++ b/recipes/onenote/webview.js
@@ -0,0 +1,15 @@
1"use strict";
2
3var _path = _interopRequireDefault(require("path"));
4
5function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
6
7module.exports = Ferdi => {
8 const getMessages = function getMessages() {
9 // TODO: Insert your notification-finding code here
10 Ferdi.setBadge(0, 0);
11 };
12
13 Ferdi.loop(getMessages);
14 Ferdi.injectCSS(_path.default.join(__dirname, 'service.css'));
15};