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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt (-1 / +11 lines)
Lines 17-22 $(document).ready(function() { Link Here
17
            $("#bibs li.csv_profiles").hide();
17
            $("#bibs li.csv_profiles").hide();
18
        }
18
        }
19
    });
19
    });
20
21
    $('#output_format').change(function(){
22
        var filename = $('#filename').val();
23
        var file_name = filename.split(".");
24
        var extension = $(this).val();
25
        if (extension == "iso2709") {
26
            extension = "mrc";
27
        }
28
        $('#filename').val(file_name[0] + "." + extension);
29
    });
30
20
});
31
});
21
//]]>
32
//]]>
22
</script>
33
</script>
23
- 

Return to bug 14647