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