This commit is contained in:
johan 2023-01-10 10:00:25 +01:00
parent add3ac8ebd
commit b03f1642f0

View file

@ -767,7 +767,7 @@ $('#demande-button').click(function () {
});
});
var saved_form = $('#login-form').html();
var saved_form = $('#demande-form').html();
function is_locked() {
@ -790,9 +790,9 @@ function updateDemandes() {
success: function(data) {
if(data.success) {
if(data.state == "open") {
$('#login-form').html(saved_form);
$('#demande-form').html(saved_form);
} else {
$('#login-form').html('<h2>Les commandes sont fermés pour le moment mais on revient vite !</h2>');
$('#demande-form').html('<h2>Les commandes sont fermés pour le moment mais on revient vite !</h2>');
}
}
}