From e774b8d3bf28f816de436bd3496b43dac9cafaa7 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 Content-Type: text/plain; charset="utf-8" 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. --- 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 154c33a..f16f050 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.1.4