From: Galen Charlton Date: Mon, 24 Aug 2020 14:49:12 +0000 (-0400) Subject: Revert "LP#1332651 do not strip internal spaces in barcode" X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=5050fe7178c74bb8cd59bccaebd8561b0d4d5f38;p=working%2FEvergreen.git Revert "LP#1332651 do not strip internal spaces in barcode" This reverts commit 10a0680e782a6cb7646d4f7d925c8feba44865c4. --- diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/app.js b/Open-ILS/web/js/ui/default/staff/circ/patron/app.js index 736c938bb6..d6a6a1ec24 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/patron/app.js +++ b/Open-ILS/web/js/ui/default/staff/circ/patron/app.js @@ -480,8 +480,7 @@ function($scope , $location , egCore , egConfirmDialog , egUser , patronSvc , $u $scope.bcNotFound = null; $scope.optInRestricted = false; if (!args.barcode) return; - args.barcode = args.barcode.replace(/^\s/g,''); - args.barcode = args.barcode.replace(/\s$/g,''); + args.barcode = args.barcode.replace(/\s/g,''); // blur so next time it's set to true it will re-apply select() $scope.selectMe = false;