Merge remote branch 'origin/master'

This commit is contained in:
Pootle server 2011-01-12 18:40:08 +01:00
commit 30a64604c0

View File

@ -106,11 +106,12 @@ function appendInlineAnchor() {
$this_td.after($cloned_anchor);
});
$('#rowsDeleteForm').find('thead').find('th').each(function() {
if($(this).attr('colspan') == 3) {
$(this).attr('colspan', '4')
$('#rowsDeleteForm').find('thead, tbody').find('th').each(function() {
var $this_th = $(this);
if ($this_th.attr('colspan') == 3) {
$this_th.attr('colspan', '4')
}
})
});
}
}