aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zoom/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/zoom/webview.js')
-rw-r--r--recipes/zoom/webview.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/recipes/zoom/webview.js b/recipes/zoom/webview.js
index 7612d83..030c038 100644
--- a/recipes/zoom/webview.js
+++ b/recipes/zoom/webview.js
@@ -4,7 +4,7 @@ function _interopRequireDefault(obj) {
4 return obj && obj.__esModule ? obj : { default: obj }; 4 return obj && obj.__esModule ? obj : { default: obj };
5} 5}
6 6
7module.exports = Ferdium => { 7module.exports = (Ferdium, settings) => {
8 const getMessages = () => { 8 const getMessages = () => {
9 let directCount = 0; 9 let directCount = 0;
10 const directCountPerServer = document.querySelectorAll( 10 const directCountPerServer = document.querySelectorAll(
@@ -34,9 +34,12 @@ module.exports = Ferdium => {
34 if (link || button) { 34 if (link || button) {
35 const url = link ? link.getAttribute('href') : button.getAttribute('title'); 35 const url = link ? link.getAttribute('href') : button.getAttribute('title');
36 36
37 if (url.includes('views/imgpsh_fullsize_anim')) { 37 event.preventDefault();
38 event.preventDefault(); 38 event.stopPropagation();
39 event.stopPropagation(); 39
40 if (settings.trapLinkClicks === true) {
41 window.location.href = url;
42 } else {
40 Ferdium.openNewWindow(url); 43 Ferdium.openNewWindow(url);
41 } 44 }
42 } 45 }