19 lines
		
	
	
		
			648 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			648 B
		
	
	
	
		
			JavaScript
		
	
	
	
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');
 | 
						|
  });
 | 
						|
}
 |