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.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/recipes/gotomeeting/webview.js b/recipes/gotomeeting/webview.js
index 1cd2168..6e0b370 100644
--- a/recipes/gotomeeting/webview.js
+++ b/recipes/gotomeeting/webview.js
@@ -1,10 +1,8 @@
1"use strict";
2
3const path = require('path'); 1const path = require('path');
4 2
5module.exports = Ferdi => { 3module.exports = Ferdi => {
6 Ferdi.injectCSS(path.join(__dirname, 'service.css')); 4 Ferdi.injectCSS(path.join(__dirname, 'service.css'));
7 if(document.location.href.match("after")){ 5 if (document.location.href.match('after')) {
8 document.location.href="https://app.gotomeeting.com/home.html"; 6 document.location.href = 'https://app.gotomeeting.com/home.html';
9 } 7 }
10}; 8};