Add link to refresh ping and power status

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7570 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2010-09-22 04:10:59 +00:00
parent df30b66315
commit 4848313d2c

View File

@ -750,10 +750,8 @@ function loadPowerStatus(data) {
dTable.fnUpdate(status, rowNum, 3);
}
// Hide ping and power loader
var pingCol = $('#nodesDataTable thead tr th').eq(2);
// Hide power loader
var powerCol = $('#nodesDataTable thead tr th').eq(3);
pingCol.find('img').hide();
powerCol.find('img').hide();
}
@ -811,11 +809,9 @@ function loadPingStatus(data) {
dTable.fnUpdate(status, rowPos, 2);
}
// Hide ping and power loader
// Hide ping loader
var pingCol = $('#nodesDataTable thead tr th').eq(2);
var powerCol = $('#nodesDataTable thead tr th').eq(3);
pingCol.find('img').hide();
powerCol.find('img').hide();
}
/**