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

peek.rblineprof.js « javascripts « assets « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cad6e24d40ee7fd3d41a2c9b00dba1f38d5cf4e9 (plain)
1
2
3
4
5
$(document).on('click', '.js-lineprof-file', function(e) {
  $(this).parents('.heading').next('div').toggle();
  e.preventDefault();
  return false;
});