mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-11-03 21:02:34 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3596 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			15 lines
		
	
	
		
			386 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			386 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Javascript functions for the Ping tab
 | 
						|
 | 
						|
function loadCopyTab(panel) {
 | 
						|
	//alert('showing Copy tab');
 | 
						|
	var nr = '';
 | 
						|
	if (window.noderange && window.noderange != "") {
 | 
						|
		nr = window.noderange;
 | 
						|
	}
 | 
						|
 | 
						|
	panel.children().remove();	//get rid of the previous contents
 | 
						|
	panel.append('<p>Loading Copy tab... <img src="../images/throbber.gif"></p>');
 | 
						|
	panel.load('copyfiles.php?noderange='+nr);
 | 
						|
}
 | 
						|
 |