Files
sabnzbd/interfaces/wizard/static/javascript/restart.js
ShyPike 5a02a183f4 Normalize the skin files:
- No tabs
- Two space indentation
- Unix format
Convert CherryPy to Unix format.
Set .bzrtab to allow only the proper format.
2011-04-25 16:02:57 +02:00

17 lines
424 B
JavaScript

function complete(){
$(".hidden").fadeIn("slow");
$(".disabled").removeAttr('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);
}
});
});