aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/googlecalendar/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/googlecalendar/webview.js')
-rw-r--r--recipes/googlecalendar/webview.js10
1 files changed, 6 insertions, 4 deletions
diff --git a/recipes/googlecalendar/webview.js b/recipes/googlecalendar/webview.js
index 2e34c8b..7a55b0a 100644
--- a/recipes/googlecalendar/webview.js
+++ b/recipes/googlecalendar/webview.js
@@ -1,6 +1,8 @@
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 Franz.injectCSS(path.join(__dirname, 'calendar.css')); 4
5 Franz.injectJSUnsafe(path.join(__dirname, 'webview-unsafe.js')); 5module.exports = Ferdi => {
6 Ferdi.injectCSS(_path.default.join(__dirname, 'calendar.css'));
7 Ferdi.injectJSUnsafe(_path.default.join(__dirname, 'webview-unsafe.js'));
6}; 8};