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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt (-4 / +3 lines)
Lines 336-347 Link Here
336
336
337
            $("li.csv_profiles").hide();
337
            $("li.csv_profiles").hide();
338
338
339
            $("#bibs select[name='output_format']").on('change', function(){
339
            $("#bibs_panel select[name='output_format']").on('change', function(){
340
                var format = $(this).val();
340
                var format = $(this).val();
341
                if ( format == 'csv' ) {
341
                if ( format == 'csv' ) {
342
                    $("#bibs li.csv_profiles").show();
342
                    $("#bibs_panel li.csv_profiles").show();
343
                } else {
343
                } else {
344
                    $("#bibs li.csv_profiles").hide();
344
                    $("#bibs_panel li.csv_profiles").hide();
345
                }
345
                }
346
            });
346
            });
347
            $("#checkall").on("click",function(e){
347
            $("#checkall").on("click",function(e){
348
- 

Return to bug 33590