diff --git a/_layouts/life-in-weeks.html b/_layouts/life-in-weeks.html index 2cf1f63..aaa0d02 100644 --- a/_layouts/life-in-weeks.html +++ b/_layouts/life-in-weeks.html @@ -83,14 +83,12 @@ $( ".week" ).each(function( index ) { if (today < Date.parse($( this ).attr('data-date'))) { $( this ).addClass('future-date'); - $( this ).attr('title', ''); - $( this ).children().remove(); + $( this ).children('.collapsed').remove(); } }); $( ".birthday" ).each(function( index ) { if (today < Date.parse($( this ).attr('data-date'))) { $( this ).addClass('future-date'); - $( this ).attr('title', ''); } }); })