mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 10:56:10 +01:00 
			
		
		
		
	* split `index.js` to separate files
* tune clipboard
* fix promise
* fix document
* remove intermediate empty file
* fix async event listener
* use `export function` instead of `export {}`, add more comments
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: 6543 <6543@obermui.de>
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			174 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			174 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export function initRepoCommitButton() {
 | |
|   $('.commit-button').on('click', function (e) {
 | |
|     e.preventDefault();
 | |
|     $(this).parent().find('.commit-body').toggle();
 | |
|   });
 | |
| }
 |