Bug 26377: Simplify JS code

Signed-off-by: Owen Leonard <oleonard@myacpl.org>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Jonathan Druart 2022-05-31 11:18:08 +02:00 committed by Tomas Cohen Arazi
parent 97e8a5b00d
commit 0d19d7bcc5
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -739,20 +739,9 @@ $(document).ready(function() {
});
});
$("#serialsadditems-yes").on("change", function(){
if( $(this).prop("checked") ){
$(".use_items").show();
} else {
$(".use_items").hide().find("select").val("");
}
});
$("#serialsadditems-no").on("change", function(){
if( $(this).prop("checked") ){
$(".use_items").hide().find("select").val("");
} else {
$(".use_items").show();
}
$("input[name='serialsadditems']").on("change", function(){
const display = $(this).val() == "1" ? "block" : "none";
$(".use_items").css('display', display).find("select").val("")
});
});