From 27ed977ce16340aaa6a1807ec1f91fa8fe6484f7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 12 Mar 2011 23:25:07 +0530 Subject: [PATCH] Fixed clashing between row marking and null checkbox of inline-edit --- js/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/functions.js b/js/functions.js index 94221b1b6..8087dcc99 100644 --- a/js/functions.js +++ b/js/functions.js @@ -594,7 +594,7 @@ $(document).ready(function() { */ $('tr.odd:not(.noclick), tr.even:not(.noclick)').live('click',function(e) { //do not trigger when clicked on anchor or inside input element (in inline editing mode) with exception of the first checkbox - if ($(e.target).is('a, a *')) { + if ($(e.target).parents('tr').find('td:nth(2)').hasClass('inline_edit_active')) { return; } // XXX: FF fires two click events for