* Fix bug.

This commit is contained in:
zhaoke
2022-12-29 06:50:26 +00:00
parent d5c211777a
commit 7c2cbd2a79
+3 -2
View File
@@ -96,10 +96,11 @@ $('#checkServiceStatus').click(function(){
$('.node-init-install').on('click', function(){
$(this).addClass('load-indicator loading');
var link = $(this).data('href')
var that = this
$.get(link, function(response)
{
$(this).removeClass('load-indicator');
$(this).removeClass('loading');
$(that).removeClass('load-indicator');
$(that).removeClass('loading');
$('#checkServiceStatus').trigger("click")
})
})