Files
iTop/templates/base/components/button/layout.js.twig
2021-02-17 10:24:44 +01:00

10 lines
351 B
Twig

{% if (oUIBlock.GetOnClickJsCode() is not empty) or (oUIBlock.GetJsCode() is not empty) %}
{% if oUIBlock.GetOnClickJsCode() is not empty %}
$('#{{ oUIBlock.GetId() }}').on('click', function () {
{{ oUIBlock.GetOnClickJsCode()|raw }}
});
{% endif %}
{% if oUIBlock.GetJsCode() is not empty %}
{{ oUIBlock.GetJsCode()|raw }}
{% endif %}
{% endif %}