From: Bill Erickson Date: Mon, 12 Jul 2021 16:54:14 +0000 (-0400) Subject: LP1888723 Traditional catalog still uses traditional holdings editor X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=dc31a14eef23fe1c10aed34c4910bd22d44f1504;p=evergreen%2Fpines.git LP1888723 Traditional catalog still uses traditional holdings editor Avoid sending staff to the new holdings editor from within the traditional catalog, so there remains a way to get to the traditional editor. Signed-off-by: Bill Erickson Signed-off-by: Ruth Frasur Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/web/js/ui/default/staff/cat/catalog/app.js b/Open-ILS/web/js/ui/default/staff/cat/catalog/app.js index 116c2ab858..5789dba3ec 100644 --- a/Open-ILS/web/js/ui/default/staff/cat/catalog/app.js +++ b/Open-ILS/web/js/ui/default/staff/cat/catalog/app.js @@ -1395,8 +1395,7 @@ function($scope , $routeParams , $location , $window , $q , egCore , egHolds , e } ).then(function(key) { if (key) { - //var url = egCore.env.basePath + 'cat/volcopy/' + key; - var url = '/eg2/staff/cat/volcopy/session/' + key; + var url = egCore.env.basePath + 'cat/volcopy/' + key; $timeout(function() { $window.open(url, '_blank') }); } else { alert('Could not create anonymous cache key!');