Welcome to mirror list, hosted at ThFree Co, Russian Federation.

commits.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a62e9330ffca7ac0921a403e38bbda6b7c650ddc (plain)
1
2
3
4
5
6
7
8
9
$(document).ready(function(){
  $(".day-commits-table li.commit").live('click', function(e){
    if(e.target.nodeName != "A") {
      location.href = $(this).attr("url");
      e.stopPropagation();
      return false;
    }
  });
});