aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/gotomeeting/webview.js
diff options
context:
space:
mode:
authorLibravatar tristanplouz <tristanplouz@gmail.com>2020-09-19 18:51:13 +0200
committerLibravatar GitHub <noreply@github.com>2020-09-19 17:51:13 +0100
commit06a06528ddc9015f71bfbf44bfc2992f06124d0d (patch)
treeeaf66c676b6571304a57daea96db39d2d799edd4 /uncompressed/gotomeeting/webview.js
parentMerge pull request #262 from eandersons/nextcloud-cospend (diff)
downloadferdium-recipes-06a06528ddc9015f71bfbf44bfc2992f06124d0d.tar.gz
ferdium-recipes-06a06528ddc9015f71bfbf44bfc2992f06124d0d.tar.zst
ferdium-recipes-06a06528ddc9015f71bfbf44bfc2992f06124d0d.zip
Add Gotomeeting recipe (#162)
Co-authored-by: Amine <amine@mouafik.fr>
Diffstat (limited to 'uncompressed/gotomeeting/webview.js')
-rw-r--r--uncompressed/gotomeeting/webview.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/uncompressed/gotomeeting/webview.js b/uncompressed/gotomeeting/webview.js
new file mode 100644
index 0000000..1cd2168
--- /dev/null
+++ b/uncompressed/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};