Changeset - 9c252005e5fd
[Not reviewed]
default
0 1 0
Andrew Shadura - 11 years ago 2015-03-21 16:55:52
andrew@shadura.me
stats: use the correct element id for "show more" link handler
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/summary/summary.html
Show inline comments
 
@@ -385,15 +385,15 @@ $(document).ready(function(){
 
    }
 
    if (data.length == 0) {
 
        tbl.innerHTML = "<tr><td>${_('No data ready yet')}</td></tr>";
 
    }
 

	
 
    $('#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();
 
    });
 
});
 
</script>
 
%endif
 

	
 
</%def>
0 comments (0 inline, 0 general)