mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-25 21:34:12 +01:00
10 lines
351 B
Twig
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 %} |