diff --git a/kallithea/templates/journal/journal_data.html b/kallithea/templates/journal/journal_data.html --- a/kallithea/templates/journal/journal_data.html +++ b/kallithea/templates/journal/journal_data.html @@ -48,6 +48,11 @@ }); e.preventDefault(); }); + $('#journal').on('click','.show_more',function(e){ + var el = e.target; + $('#'+el.id.substring(1)).show(); + $(el.parentNode).hide(); + }); }); %else: