// Fix attr('checked'), attr('disabled') and attr('selected') with jquery update #PSCFV-2142

This commit is contained in:
rMalie
2012-05-02 08:29:30 +00:00
parent faea9caafb
commit d0b4e96ab3
17 changed files with 43 additions and 43 deletions
+2 -2
View File
@@ -203,7 +203,7 @@ function checkAllCategories()
else
{
$('input[name="categoryBox[]"]').not(':checked').each(function () {
$(this).attr('checked', 'checked');
$(this).attr('checked', true);
clickOnCategoryBox($(this));
});
}
@@ -352,7 +352,7 @@ function checkCategory()
}
else
{
$('li#'+category_to_check+' > input').attr('checked', 'checked');
$('li#'+category_to_check+' > input').attr('checked', true);
updateNbSubCategorySelected($('li#'+category_to_check+' > input[type=checkbox]'), true);
}
}