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/attributes.js
2008-11-03 21:47:38 +00:00

13 lines
430 B
JavaScript

// Javascript functions for the Attributes tab
function attrReady() {
}
function loadAttrTab(panel) {
//alert('showing attr tab: '+ui.tab.href);
var nr = '';
if (window.noderange && window.noderange != "") { nr = window.noderange; }
panel.children().remove(); // get rid of previous content
panel.append('<p>Loading node attributes... <img src="../images/throbber.gif"></p>');
panel.load('attributes.php?noderange='+nr);
}