mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-21 08:12:26 +02:00
10 lines
343 B
Twig
10 lines
343 B
Twig
|
|
$('#{{ oUIBlock.GetId() }}').parent().on('click', function() {
|
|
let oInput = $(this).find('.ibo-toggler');
|
|
let oHiddenInput = $(this).find('.ibo-toggler--hidden');
|
|
if (!oInput.prop('disabled')) {
|
|
oInput.prop('checked', !oInput.prop('checked'));
|
|
oHiddenInput.val(oInput.prop('checked') ? 'on' : 'off');
|
|
oInput.trigger('change');
|
|
}
|
|
}); |