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.
18 lines
648 B
18 lines
648 B
import $ from 'jquery';
|
|
|
|
export function initRepoBranchButton() {
|
|
$('.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');
|
|
});
|
|
}
|
|
|