Patch #3155803 - Column header misalignment

This commit is contained in:
Madhura Jayaratne
2011-01-12 10:48:43 -05:00
committed by Marc Delisle
parent b34b104a30
commit 7e79589eba

View File

@@ -110,7 +110,13 @@ function appendInlineAnchor() {
if($(this).attr('colspan') == 3) {
$(this).attr('colspan', '4')
}
})
});
$('#rowsDeleteForm').find('tbody').find('th').each(function() {
if($(this).attr('colspan') == 3) {
$(this).attr('colspan', '4')
}
});
}
}