mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
8 lines
351 B
JavaScript
8 lines
351 B
JavaScript
|
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');
|
||
|
$('#modal-create-branch-from-span').text($(this).data('branch-from'));
|
||
|
$($(this).data('modal')).modal('show');
|
||
|
});
|
||
|
}
|