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=dc8b48bdc5fa36850fb7d40023ae0d4befaea307;p=contrib%2FConifer.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 0b1a1a7d52..08f059659b 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 @@ -474,8 +474,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;