mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 02:58:43 +02:00
12 lines
366 B
Twig
12 lines
366 B
Twig
{# @copyright Copyright (C) 2010-2023 Combodo SARL #}
|
|
{# @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;
|
|
});
|