bug #3301249 [interface] Iconic table operations does not remove inline edit label

This commit is contained in:
Madhura Jayaratne
2011-05-17 22:15:58 +05:30
parent 2f2157cf24
commit b091f91f92
7 changed files with 86 additions and 49 deletions

View File

@@ -606,7 +606,7 @@ $(document).ready(function() {
*/
$('tr.odd:not(.noclick), tr.even:not(.noclick)').live('click',function(e) {
// do not trigger when clicked on anchor
if ($(e.target).is('a, a *')) {
if ($(e.target).is('a, img, a *')) {
return;
}
// XXX: FF fires two click events for <label> (label and checkbox), so we need to handle this differently