FEAT increased delay for save button reactivation to 3000ms
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2025-04-07 15:22:31 +02:00
parent 657742893b
commit 87c5990927

View File

@ -107,7 +107,7 @@ add_action('edit_form_after_title', function () {
// Réactiver le bouton et restaurer le texte après un délai
setTimeout(function() {
$button.prop('disabled', false).text('Sauvegarder');
}, 2000);
}, 3000);
});
});
</script>