Fix indents
This commit is contained in:
parent
671919be1b
commit
ddc7d11c99
|
@ -26,8 +26,8 @@
|
|||
break;
|
||||
case "confirm_stop":
|
||||
$('#body-content .btn').attr('disabled', true);
|
||||
$.post( "/dhcp_start_stop_restart", "action=stop", function( data ) {
|
||||
$( "#dhcp_start_stop_restart_result" ).html( data );
|
||||
$.post("/dhcp_start_stop_restart", "action=stop", function (data) {
|
||||
$("#dhcp_start_stop_restart_result").html(data);
|
||||
});
|
||||
|
||||
break;
|
||||
|
@ -40,15 +40,15 @@
|
|||
break;
|
||||
case "confirm_restart":
|
||||
$('#body-content .btn').attr('disabled', true);
|
||||
$.post( "/dhcp_start_stop_restart", "action=restart", function( data ) {
|
||||
$( "#dhcp_start_stop_restart_result" ).html( data );
|
||||
$.post("/dhcp_start_stop_restart", "action=restart", function (data) {
|
||||
$("#dhcp_start_stop_restart_result").html(data);
|
||||
});
|
||||
|
||||
break;
|
||||
case "start":
|
||||
$('#body-content .btn').attr('disabled', true);
|
||||
$.post( "/dhcp_start_stop_restart", "action=start", function( data ) {
|
||||
$( "#dhcp_start_stop_restart_result" ).html( data );
|
||||
$.post("/dhcp_start_stop_restart", "action=start", function (data) {
|
||||
$("#dhcp_start_stop_restart_result").html(data);
|
||||
});
|
||||
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue