Skip to content
Browse files

fix an issue with checklists

  • Loading branch information...
1 parent 07becee commit 2c53a17521bee5a4d9b9aff17afab80cf6b99f1e @QuincyLarson QuincyLarson committed
Showing with 1 addition and 1 deletion.
  1. +1 −1 public/js/main.js
View
2 public/js/main.js
@@ -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');
}
});

0 comments on commit 2c53a17

Please sign in to comment.
Something went wrong with that request. Please try again.