Bug 17315: (Bug 17210 follow-up) Fix "Save to lists" links from the result page
On bug 17210, the selector .addtoshelf should not have caught the .addtoshelf nodes from the result list. To fix this, we just need to make the selector more specific (and cannot reuse it without more changes, the biblionumber variable is not the same - vs SEARCH_RESULT.biblionumber). Test plan: Make sure the 2 links (from detail and search result) "Save to lists" and "Save to your lists" work as expected. Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
9734726846
commit
e422de7b62
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ $.widget.bridge('uitooltip', $.ui.tooltip);
|
|||
window.print();
|
||||
return false;
|
||||
});
|
||||
$(".addtoshelf").on("click",function(){
|
||||
$("#ulactioncontainer > ul > li > a.addtoshelf").on("click",function(){
|
||||
Dopop('opac-addbybiblionumber.pl?biblionumber=[% biblionumber %]');
|
||||
return false;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue