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