mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-10-31 03:12:30 +00:00 
			
		
		
		
	- rvitals done - frame view fixed git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2511 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			10 lines
		
	
	
		
			389 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			389 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Javascript functions for the Rvitals/rinv tab
 | |
| 
 | |
| function loadVitalsTab(panel) {
 | |
| 	//alert('showing vitals tab');
 | |
| 	var nr = '';
 | |
| 	if (window.noderange && window.noderange != "") { nr = window.noderange; }
 | |
| 	panel.children().remove();	// get rid of previous content
 | |
| 	panel.append('<p>Loading node vitals... <img src="../images/throbber.gif"></p>');
 | |
| 	panel.load('rvitals.php?noderange='+nr);
 | |
| } |