aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/discord/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/discord/webview.js')
-rw-r--r--recipes/discord/webview.js12
1 files changed, 8 insertions, 4 deletions
diff --git a/recipes/discord/webview.js b/recipes/discord/webview.js
index 7612d83..cadafb1 100644
--- a/recipes/discord/webview.js
+++ b/recipes/discord/webview.js
@@ -4,7 +4,8 @@ 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 console.log('settings', settings);
8 const getMessages = () => { 9 const getMessages = () => {
9 let directCount = 0; 10 let directCount = 0;
10 const directCountPerServer = document.querySelectorAll( 11 const directCountPerServer = document.querySelectorAll(
@@ -34,9 +35,12 @@ module.exports = Ferdium => {
34 if (link || button) { 35 if (link || button) {
35 const url = link ? link.getAttribute('href') : button.getAttribute('title'); 36 const url = link ? link.getAttribute('href') : button.getAttribute('title');
36 37
37 if (url.includes('views/imgpsh_fullsize_anim')) { 38 event.preventDefault();
38 event.preventDefault(); 39 event.stopPropagation();
39 event.stopPropagation(); 40
41 if (settings.trapLinkClicks === true) {
42 window.location.href = url;
43 } else {
40 Ferdium.openNewWindow(url); 44 Ferdium.openNewWindow(url);
41 } 45 }
42 } 46 }