summaryrefslogtreecommitdiffstats
path: root/web_src/js/features/repo-branch.js
blob: bc713a73970d8a80ecd03053727a8c24b2b435d6 (plain)
1
2
3
4
5
6
7
8
9
import $ from 'jquery';

export function initRepoBranchButton() {
  $('.show-create-branch-modal.button').on('click', function () {
    $('#create-branch-form')[0].action = $('#create-branch-form').data('base-action') + $(this).data('branch-from-urlcomponent');
    $('#modal-create-branch-from-span').text($(this).data('branch-from'));
    $($(this).data('modal')).modal('show');
  });
}