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.
7 lines
364 B
7 lines
364 B
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');
|
|
});
|
|
}
|
|
|