commits.js 234 Bytes Edit Raw Blame History 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; } }); });