Skip to content

Commit

Permalink
Fix minor incompatibility with Koha 23.11
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemhall committed Jun 21, 2024
1 parent 0a04a2e commit c7f8f63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Koha/Plugin/Com/ByWaterSolutions/RFID/static_files/rfid.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ let intervalID = "";
$(document).ready(function () {
initiate_rfid_scanning();

$("#checkin_search-tab").on("click", function () {
$("#checkin_search-tab,a[href='#checkin_search']").on("click", function () {
handle_action_change("checkin");
handle_one_at_a_time("checkin", "enable", $("#ret_barcode"));
});

$("#renew_search-tab").on("click", function () {
$("#renew_search-tab,a[href='#renew_search']").on("click", function () {
handle_action_change("renew");
handle_one_at_a_time("checkin", "enable", $("#ren_barcode"));
});
Expand Down

0 comments on commit c7f8f63

Please sign in to comment.