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

branch_from.js.haml « merge_requests « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3147188d1c65c951c2949d566a7622a7426de32 (plain)
1
2
3
4
5
6
7
:plain
  $(".mr_source_commit").html("#{commit_to_html(@commit, @source_project, false)}");
  var mrTitle = $('#merge_request_title');

  if(mrTitle.val().length == 0) {
    mrTitle.val("#{params[:ref].titleize}");
  }