From ba67d57667d13727e12604294bb8da44383be1b1 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 17 Feb 2017 10:13:32 +0000 Subject: [PATCH] Bug 15498: Fix conflict with bug 17394 --- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index 680578e..d1f098c 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -38,7 +38,7 @@ $(document).ready(function() { $("#output_format > option:first-child").attr("selected", "selected"); $("select[name='csv_profile_id']").hide(); - $(document).on("change", '#output_format', function(){ + $(document).on("change", '#issues-table-output-format', function(){ if ( $(this).val() == 'csv' ) { $("select[name='csv_profile_id']").show(); } else { -- 2.1.4