mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	* move semantic.dropdown.custom.js to webpack Also disabled a annoying linter rule which insisted that imports can not contain a file extension. Fixes: https://github.com/go-gitea/gitea/issues/8971 * reorganize web_src files and rebuild * restart ci
		
			
				
	
	
		
			17 lines
		
	
	
		
			472 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			472 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
$(async () => {
 | 
						|
  const graphCanvas = document.getElementById('graph-canvas');
 | 
						|
  if (!graphCanvas) return;
 | 
						|
 | 
						|
  const [{ default: gitGraph }] = await Promise.all([
 | 
						|
    import(/* webpackChunkName: "gitgraph" */'./gitGraph.js'),
 | 
						|
    import(/* webpackChunkName: "gitgraph" */'../css/gitGraph.css'),
 | 
						|
  ]);
 | 
						|
 | 
						|
  const graphList = [];
 | 
						|
  $('#graph-raw-list li span.node-relation').each(function () {
 | 
						|
    graphList.push($(this).text());
 | 
						|
  });
 | 
						|
 | 
						|
  gitGraph(graphCanvas, graphList);
 | 
						|
});
 |