Merge pull request #146 from ET-Bent/patch-1
Fix node view in admin panel
This commit is contained in:
commit
b3f078add2
1 changed files with 4 additions and 4 deletions
|
@ -75,14 +75,14 @@ $(document).ready(function () {
|
|||
});
|
||||
function pingNodes() {
|
||||
$('td[data-action="ping"]').each(function(i, element) {
|
||||
elem = $(this);
|
||||
$.ajax({
|
||||
type: 'GET',
|
||||
url: elem.data('location'),
|
||||
url: $(element).data('location'),
|
||||
timeout: 5000
|
||||
}).done(function (data) {
|
||||
elem.removeClass('text-muted').find('i').removeClass().addClass('fa fa-fw fa-heartbeat faa-pulse animated').css('color', '#50af51');
|
||||
$(element).removeClass('text-muted').find('i').removeClass().addClass('fa fa-fw fa-heartbeat faa-pulse animated').css('color', '#50af51');
|
||||
}).fail(function () {
|
||||
elem.removeClass('text-muted').find('i').removeClass().addClass('fa fa-fw fa-heart-o').css('color', '#d9534f');
|
||||
$(element).removeClass('text-muted').find('i').removeClass().addClass('fa fa-fw fa-heart-o').css('color', '#d9534f');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue