See More

Evolution of the number of commits over the last year" + "" ); var data = { csrf_token: "IjU2Yzk1NTc1NjM1ZTBjOTZmNmJmMTFjMDlmODhiZTJhZmExYWM1NGYi.HJFJxw.f00WhwD0EPLoUsGuS2TFg6zGYRk", repo: "ghc-json", username: "", namespace: "rpms", } process_async(_stats_url, data, show_commits_history); } else { var _b = $("#commiter_list"); var html = '

Commits stats' html += '
This project\'s repo is empty. No stats available.'; _b.html(html); _b.show(); } }; $(document).ready(function() { $('.stats_btn').click(function(ev){ ev.preventDefault(); $('.stats_btn').removeClass('active'); if ($(this).attr('name') == 'issues') { } else if ($(this).attr('name') == 'authors') { commits_authors_call(); $(this).addClass('active'); window.location.hash = 'authors' } else if ($(this).attr('name') == 'commits') { commits_history_call(); $(this).addClass('active'); window.location.hash = 'commits' } }); window.onhashchange = function () { if (window.location.hash == 'issues') { } else if (window.location.hash == 'authors') { commits_authors_call(); } else if (window.location.hash == 'commits') { commits_history_call(); } } $('.stats_btn[name="authors"]').trigger("click"); });