You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

repo-branch.js 364B

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