2022-01-28 16:00:11 -05:00
|
|
|
import $ from 'jquery';
|
|
|
|
|
2021-10-16 13:28:04 -04:00
|
|
|
export function initRepoBranchButton() {
|
2022-02-09 15:28:55 -05:00
|
|
|
$('.show-create-branch-modal').on('click', function () {
|
|
|
|
let modalFormName = $(this).attr('data-modal-form');
|
|
|
|
if (!modalFormName) {
|
|
|
|
modalFormName = '#create-branch-form';
|
|
|
|
}
|
|
|
|
$(modalFormName)[0].action = $(modalFormName).attr('data-base-action') + $(this).attr('data-branch-from-urlcomponent');
|
|
|
|
let fromSpanName = $(this).attr('data-modal-from-span');
|
|
|
|
if (!fromSpanName) {
|
|
|
|
fromSpanName = '#modal-create-branch-from-span';
|
|
|
|
}
|
|
|
|
|
|
|
|
$(fromSpanName).text($(this).attr('data-branch-from'));
|
|
|
|
$($(this).attr('data-modal')).modal('show');
|
2021-10-16 13:28:04 -04:00
|
|
|
});
|
|
|
|
}
|