You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
520 B

function complete() {
$(".hidden").fadeIn("slow");
$(".disabled").addClass('btn-success').removeClass('btn-default').removeClass('disabled');
$('#restarting').addClass("hidden");
$('#complete').removeClass("hidden");
$('#tips').removeClass("hidden");
}
$(document).ready(function() {
$.ajax({
type: "POST",
url: "../tapi",
data: "mode=restart&apikey=" + $('#apikey').val(),
complete: function(result) {
setTimeout(complete, 7000);
}
});
});