Files
Atay-Makhzan/web_src/js/features/repo-branch.js
T

8 lines
364 B
JavaScript
Raw Normal View History

2021-10-17 01:28:04 +08:00
export function initRepoBranchButton() {
$('.show-create-branch-modal.button').on('click', function () {
2021-11-16 18:18:25 +00:00
$('#create-branch-form')[0].action = $('#create-branch-form').data('base-action') + $(this).data('branch-from-urlcomponent');
2021-10-17 01:28:04 +08:00
$('#modal-create-branch-from-span').text($(this).data('branch-from'));
$($(this).data('modal')).modal('show');
2021-10-17 01:28:04 +08:00
});
}