mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-20 17:18:51 +02:00
8 lines
226 B
Twig
8 lines
226 B
Twig
|
|
$('#{{ oUIBlock.GetId() }}').parent().on('click', function() {
|
|
let oInput = $(this).find('.ibo-toggler');
|
|
if (!oInput.prop('disabled')) {
|
|
oInput.prop('checked', !oInput.prop('checked'));
|
|
oInput.trigger('change');
|
|
}
|
|
}); |