xcat-core/xCAT-web/machines/groups.js
2008-10-29 13:57:19 +00:00

11 lines
346 B
JavaScript

// Javascript functions needed by the groups page
$(document).ready(function(){
window.nodetabs = $("#nodetabs > ul").tabs( { cookie: { expires: 30, path: '/' },
show: function(e,ui) {
if (ui.tab.href.search('#attributes-tab$') > -1) { loadAttrTab($(ui.panel)); }
}
}); // ends the properties passed to tabs()
});