mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			288 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			288 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
$(document).ready(function () {
 | 
						|
	var graphList = [];
 | 
						|
	
 | 
						|
	if (!document.getElementById('graph-canvas')) {
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	
 | 
						|
	$("#graph-raw-list li span.node-relation").each(function () {
 | 
						|
		graphList.push($(this).text());
 | 
						|
	})
 | 
						|
	
 | 
						|
	gitGraph(document.getElementById('graph-canvas'), graphList);
 | 
						|
})
 |