Undo senseless indentation correction 2

This commit is contained in:
Julius 2013-07-16 22:04:44 +02:00
parent 3b91b9f7c6
commit 9f464706b4
1 changed files with 2 additions and 2 deletions

View File

@ -130,9 +130,9 @@ function updateSort(table) {
function highlightRow(checkbox) {
var row = checkbox.closest('tr');
if (checkbox.is(':checked')) {
row.addClass('selected');
row.addClass('selected');
} else {
row.removeClass('selected');
row.removeClass('selected');
}
}