gitea

Development moved to Codeberg

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
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');
  });
}