xcat-core/xCAT-web/machines/attributes.js

13 lines
430 B
JavaScript
Raw Normal View History

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