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.js19
1 files changed, 10 insertions, 9 deletions
diff --git a/recipes/discord/webview.js b/recipes/discord/webview.js
index cadafb1..1255675 100644
--- a/recipes/discord/webview.js
+++ b/recipes/discord/webview.js
@@ -5,7 +5,6 @@ function _interopRequireDefault(obj) {
5} 5}
6 6
7module.exports = (Ferdium, settings) => { 7module.exports = (Ferdium, settings) => {
8 console.log('settings', settings);
9 const getMessages = () => { 8 const getMessages = () => {
10 let directCount = 0; 9 let directCount = 0;
11 const directCountPerServer = document.querySelectorAll( 10 const directCountPerServer = document.querySelectorAll(
@@ -34,14 +33,16 @@ module.exports = (Ferdium, settings) => {
34 33
35 if (link || button) { 34 if (link || button) {
36 const url = link ? link.getAttribute('href') : button.getAttribute('title'); 35 const url = link ? link.getAttribute('href') : button.getAttribute('title');
37 36
38 event.preventDefault(); 37 if (!Ferdium.isImage(url)) {
39 event.stopPropagation(); 38 event.preventDefault();
40 39 event.stopPropagation();
41 if (settings.trapLinkClicks === true) { 40
42 window.location.href = url; 41 if (settings.trapLinkClicks === true) {
43 } else { 42 window.location.href = url;
44 Ferdium.openNewWindow(url); 43 } else {
44 Ferdium.openNewWindow(url);
45 }
45 } 46 }
46 } 47 }
47 }, true); 48 }, true);