# HG changeset patch # User Andrew Shadura # Date 2015-03-21 16:55:52 # Node ID 9c252005e5fd69efd579b410f1160b42b183c8cf # Parent ecbb597c336c4afeb63467a798c2217e6d8d4b0b stats: use the correct element id for "show more" link handler diff --git a/kallithea/templates/summary/summary.html b/kallithea/templates/summary/summary.html --- a/kallithea/templates/summary/summary.html +++ b/kallithea/templates/summary/summary.html @@ -388,9 +388,9 @@ $(document).ready(function(){ } $('#lang_stats').append(tbl); - $('#code_status_show_more').click(function(){ + $('#code_stats_show_more').click(function(){ $('.stats_hidden').show(); - $('#code_status_show_more').hide(); + $('#code_stats_show_more').hide(); }); });