2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-30 09:36:41 +00:00
xcat-core/xCAT-web/machines/copyfiles.js

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);
}