summaryrefslogtreecommitdiffstats
path: root/web_src/js/features/common-global.js
diff options
context:
space:
mode:
Diffstat (limited to 'web_src/js/features/common-global.js')
-rw-r--r--web_src/js/features/common-global.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/web_src/js/features/common-global.js b/web_src/js/features/common-global.js
index 3546a052b3..a10ca74ab5 100644
--- a/web_src/js/features/common-global.js
+++ b/web_src/js/features/common-global.js
@@ -124,21 +124,6 @@ export function initGlobalCommon() {
toggleElem($($(this).data('target')));
});
- // make table <tr> and <td> elements clickable like a link
- $('tr[data-href], td[data-href]').on('click', function (e) {
- const href = $(this).data('href');
- if (e.target.nodeName === 'A') {
- // if a user clicks on <a>, then the <tr> or <td> should not act as a link.
- return;
- }
- if (e.ctrlKey || e.metaKey) {
- // ctrl+click or meta+click opens a new window in modern browsers
- window.open(href);
- } else {
- window.location = href;
- }
- });
-
// prevent multiple form submissions on forms containing .loading-button
document.addEventListener('submit', (e) => {
const btn = e.target.querySelector('.loading-button');