Files
iTop/datamodels/2.x/itop-core-update/templates/ConfirmUpdate.ready.js.twig
2024-05-06 18:35:31 +02:00

12 lines
365 B
Twig

{# @copyright Copyright (C) 2010-2024 Combodo SAS #}
{# @license http://opensource.org/licenses/AGPL-3.0 #}
$("#do-update").on("click", function(oEvent) {
$(this).prop("disabled", true);
$("#cancel-update").prop("disabled", true);
$(this).parents('form').submit();
oEvent.preventDefault();
oEvent.stopPropagation();
return false;
});