diff --git a/data/web/js/admin.js b/data/web/js/admin.js index e76feef7..b0fdbbde 100644 --- a/data/web/js/admin.js +++ b/data/web/js/admin.js @@ -15,7 +15,7 @@ $(document).ready(function() { } }); // Select checkbox by click on parent tr - $(document).on('click', 'tr', function(e) { + $(document).on('click', 'tbody>tr', function(e) { if (e.target.type == "checkbox") { e.stopPropagation(); } else { diff --git a/data/web/js/mailbox.js b/data/web/js/mailbox.js index 70435ca1..e1f0424f 100644 --- a/data/web/js/mailbox.js +++ b/data/web/js/mailbox.js @@ -15,7 +15,7 @@ $(document).ready(function() { } }); // Select checkbox by click on parent tr - $(document).on('click', 'tr', function(e) { + $(document).on('click', 'tbody>tr', function(e) { if (e.target.type == "checkbox") { e.stopPropagation(); } else {