From 614fe34d863014aef9bb65a23b8c3118759fcced Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 29 Apr 2016 12:29:01 -0400 Subject: [PATCH] Bug 16397 - Unable to delete audio alerts MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This patch corrects a JavaScript error which has arisen due to the jQuery upgrade. This should have been included in Bug 16321. To test, apply the patch and go to Administration -> Audio alerts. - In the list of existing audio alerts, check one or more checkboxes. The "Delete selected" button should become enabled. - Uncheck all checkboxes and check that the "Delete selected" button is now disabled. - Confirm that deletions are completed correctly. Signed-off-by: Marc Véron Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall --- koha-tmpl/intranet-tmpl/prog/js/audio_alerts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/audio_alerts.js b/koha-tmpl/intranet-tmpl/prog/js/audio_alerts.js index 154c33a407..f16f050f68 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/audio_alerts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/audio_alerts.js @@ -2,7 +2,7 @@ $( document ).ready(function() { var checkboxes = $("#delete-alert-form input[type='checkbox']"); var checkedcheckboxes = 0; checkboxes.on("change",function(){ - if( $(checkboxes+":checked").length > 0){ + if( $("#delete-alert-form").find("input:checked").length > 0){ checkedcheckboxes = 1; $("#delete-alerts").removeClass("disabled"); } else { @@ -86,4 +86,4 @@ function EditAlert( elt, id, precedence, selector, sound ) { $("#sound").val(sound); $("#koha-sounds").val(sound); enablePlayButton(sound,$('#play-sound')); -} \ No newline at end of file +} -- 2.39.2