Lines 388-396
Link Here
|
388 |
[% END %] |
388 |
[% END %] |
389 |
[% END %] |
389 |
[% END %] |
390 |
</div> |
390 |
</div> |
391 |
<label for="[% itemtypeloo.ccl FILTER remove(',') | html %]-[% itemtypeloo.number | html %]"> |
391 |
<label class="itypetext" for="[% itemtypeloo.ccl FILTER remove(',') | html %]-[% itemtypeloo.number | html %]"> [% itemtypeloo.description | html %] </label> |
392 |
<span class="itypetext">[% itemtypeloo.description | html %]</span> |
|
|
393 |
</label> |
394 |
</div> |
392 |
</div> |
395 |
[% END # /FOREACH itemtypeloo %] |
393 |
[% END # /FOREACH itemtypeloo %] |
396 |
</div> |
394 |
</div> |
Lines 629-634
Link Here
|
629 |
[% END %] |
627 |
[% END %] |
630 |
|
628 |
|
631 |
$(".limit-grid > *").on("click", function(e){ |
629 |
$(".limit-grid > *").on("click", function(e){ |
|
|
630 |
if ( e.target.matches("input") || e.target.matches("label") ) { |
631 |
return; |
632 |
} |
632 |
const checkbox = $(this).find("input"); |
633 |
const checkbox = $(this).find("input"); |
633 |
if( checkbox.prop("checked") ){ |
634 |
if( checkbox.prop("checked") ){ |
634 |
checkbox.prop("checked", false ); |
635 |
checkbox.prop("checked", false ); |
635 |
- |
|
|