Change color and cursor of "Show details" link on Update tab.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9317 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2011-04-14 18:38:26 +00:00
parent 19bbcae850
commit 6d04c4a947

View File

@ -277,8 +277,11 @@ function ShowUpdateResult(data) {
}
// Create link to show details
$('#update').append('<br><a>Show details</a>');
$('#update a').bind('click', function() {
$('#update').append('<br/><a>Show details</a>');
$('#update a').css({
'color': '#0000FF',
'cursor': 'pointer'
}).bind('click', function() {
// Toggle details and change text
$('#resDetail').toggle();
if ($('#update a').text() == 'Show details') {