aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/notion
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/notion')
-rw-r--r--recipes/notion/package.json2
-rw-r--r--recipes/notion/webview.js8
2 files changed, 9 insertions, 1 deletions
diff --git a/recipes/notion/package.json b/recipes/notion/package.json
index f020b26..5ed8a2d 100644
--- a/recipes/notion/package.json
+++ b/recipes/notion/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "notion", 2 "id": "notion",
3 "name": "Notion", 3 "name": "Notion",
4 "version": "1.2.0", 4 "version": "1.3.0",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/TanZng/ferdi-notion", 6 "repository": "https://github.com/TanZng/ferdi-notion",
7 "config": { 7 "config": {
diff --git a/recipes/notion/webview.js b/recipes/notion/webview.js
index b64727a..e3c96e8 100644
--- a/recipes/notion/webview.js
+++ b/recipes/notion/webview.js
@@ -1,3 +1,9 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
1module.exports = Ferdium => { 7module.exports = Ferdium => {
2 const getMessages = () => { 8 const getMessages = () => {
3 let direct = 0; 9 let direct = 0;
@@ -12,4 +18,6 @@ module.exports = Ferdium => {
12 }; 18 };
13 19
14 Ferdium.loop(getMessages); 20 Ferdium.loop(getMessages);
21
22 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
15}; 23};