aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gotomeeting/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/gotomeeting/webview.js')
-rw-r--r--recipes/gotomeeting/webview.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/recipes/gotomeeting/webview.js b/recipes/gotomeeting/webview.js
new file mode 100644
index 0000000..1cd2168
--- /dev/null
+++ b/recipes/gotomeeting/webview.js
@@ -0,0 +1,10 @@
1"use strict";
2
3const path = require('path');
4
5module.exports = Ferdi => {
6 Ferdi.injectCSS(path.join(__dirname, 'service.css'));
7 if(document.location.href.match("after")){
8 document.location.href="https://app.gotomeeting.com/home.html";
9 }
10};