xcat-core/xCAT-web/machines/groups.js
bp-sawyers 14856756e3 - system p discovery done
- rvitals done
- frame view fixed

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2511 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
2008-11-19 21:26:43 +00:00

12 lines
430 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)); }
if (ui.tab.href.search('#rvitals-tab$') > -1) { loadVitalsTab($(ui.panel)); }
}
}); // ends the properties passed to tabs()
});