fix an issue with checklists

This commit is contained in:
Quincy Larson
2015-04-18 21:09:24 -07:00
parent 07becee1c4
commit 2c53a17521

View File

@ -26,7 +26,7 @@ $(document).ready(function() {
$('.checklist-element').each(function() {
var checklistElementId = $(this).attr('id');
if(!!localStorage[checklistElementId]) {
$(this).children('.step-text').addClass('faded');
$(this).children().children('li').addClass('faded');
$(this).children().children('input').trigger('click');
}
});