https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8437

--- Comment #38 from David Cook <[email protected]> ---
For some reason, my HTML response is being cut off here:

    <script>
        $(document).ready(function() {
            $('#exporttype').tabs();

            $("li.csv_profiles").hide();

            $("#bibs select[name='output_format']").on('change', function(){
                var format = $(this).val();
                if ( format == 'csv' ) {
                    $("#bibs li.csv_profiles").show();
                } else {
                    $("#bibs li.csv_profiles").hide();
                }
            });
            $("#checkall").on("click",function(e){
                e.preventDefault();
                $(".branch_select").prop("checked",1);
            });
            $("#checknone").on("click",func

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to