aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/googlecalendar/webview.js
blob: 729f400bda473ea3f93d61d6af84b60980bf0cc8 (plain) (blame)
1
2
3
4
5
6
7
8
'use strict';

const path = require('path');

module.exports = Franz => {
  Franz.injectCSS(path.join(__dirname, 'calendar.css'));
  Franz.injectJSUnsafe(path.join(__dirname, 'webview-unsafe.js'));
};