Files
iTop/datamodels/2.x/itop-core-update/view/ConfirmUpdate.ready.js.twig

12 lines
350 B
Twig

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