From 9abb8aac3639824cc60e9b662e9c8e36ce518874 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 10 Aug 2018 17:18:39 +0000 Subject: [PATCH] Bug 19390: Make jQuery selector more specific, so OPAC view link can open in new tab The OPAC view link in the staff result list already had a target="_blank", but it didn't work, because of the JavaScript for the result list browser in staff. The JavaSript code was looking for the links to the detail page in staff and this also selected the link to the detail page in OPAC. By changing detail.pl to \detail.pl opac-detail.pl will no longer be selected. To test: - Search in the staff interface - Click "OPAC view" links in staff result lists - Click "OPAC view' links in detai page - Verify both now open in a new tab - Click other links and test that navigation (previous, next, return to results) works as expected - Inside the staff client, you should see something like searchid=scs_1533922927978 added to the URLs Signed-off-by: Maryse Simard Followed the test plan and it works. --- koha-tmpl/intranet-tmpl/js/browser.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/js/browser.js b/koha-tmpl/intranet-tmpl/js/browser.js index 7e40785..173eaa0 100644 --- a/koha-tmpl/intranet-tmpl/js/browser.js +++ b/koha-tmpl/intranet-tmpl/js/browser.js @@ -63,10 +63,10 @@ KOHA.browser = function (searchid, biblionumber) { sessionStorage.setItem('searches', JSON.stringify(searches)); $(document).ready(function () { //FIXME It's not a good idea to modify the click events - $('#searchresults table tr a[href*="detail.pl"]').on('click', function (ev) { + $('#searchresults table tr a[href*="/detail.pl"]').on('click', function (ev) { ev.preventDefault(); }); - $('#searchresults table tr a[href*="detail.pl"]').on('mousedown', function (ev) { + $('#searchresults table tr a[href*="/detail.pl"]').on('mousedown', function (ev) { if ( ev.which == 2 || ev.which == 1 && ev.ctrlKey ) { // Middle click or ctrl + click ev.preventDefault(); -- 2.7.4