From dc31a14eef23fe1c10aed34c4910bd22d44f1504 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 12 Jul 2021 12:54:14 -0400 Subject: [PATCH] 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 --- Open-ILS/web/js/ui/default/staff/cat/catalog/app.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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!'); -- 2.11.0