View | Details | Raw Unified | Return to bug 15498
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-2 / +1 lines)
Lines 38-44 $(document).ready(function() { Link Here
38
38
39
    $("#output_format > option:first-child").attr("selected", "selected");
39
    $("#output_format > option:first-child").attr("selected", "selected");
40
    $("select[name='csv_profile_id']").hide();
40
    $("select[name='csv_profile_id']").hide();
41
    $(document).on("change", '#output_format', function(){
41
    $(document).on("change", '#issues-table-output-format', function(){
42
        if ( $(this).val() == 'csv' ) {
42
        if ( $(this).val() == 'csv' ) {
43
            $("select[name='csv_profile_id']").show();
43
            $("select[name='csv_profile_id']").show();
44
        } else {
44
        } else {
45
- 

Return to bug 15498