From: Chris Burton Date: Wed, 11 Sep 2019 20:32:39 +0000 (-0400) Subject: Fix for PhantomJS failing npm test in Installation Step 4.2 - Changed let to var X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fcburton%2Fworking_branch;p=working%2FEvergreen.git Fix for PhantomJS failing npm test in Installation Step 4.2 - Changed let to var --- diff --git a/Open-ILS/web/js/ui/default/staff/cat/bucket/record/app.js b/Open-ILS/web/js/ui/default/staff/cat/bucket/record/app.js index cdaaaa147b..e1e63d17f1 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/bucket/record/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/bucket/record/app.js @@ -699,7 +699,7 @@ function($scope, $q , $routeParams, bucketSvc, egCore, $window, $scope.edit_lead_inplace = function() { $scope.editing_inplace = true; - let lead = { orig_marc_xml : $scope.lead.marc_xml }; + var lead = { orig_marc_xml : $scope.lead.marc_xml }; $scope.lead = lead; } $scope.edit_lead = function() {