From 3b8c61d5dcd985ea4e2bd80f9f0628f4cb4dd7c0 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 18 May 2011 14:05:47 -0400 Subject: [PATCH] Fix for bug 6367 - 'Preview MARC' hover button does not show correct MARC record Misplaced line of JavaScript meant that the menu always grabbed the ID of the last item in the search results. Signed-off-by: Ian Walls Signed-off-by: Chris Cormack --- .../intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt index 1ee7823b64..4a0e3233d7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt @@ -40,6 +40,7 @@ $(document).ready(function(){ /* Inline edit/delete links */ $("td").click(function(event){ var $tgt = $(event.target); + var row = $(this).parent(); $(".linktools").hide(); $("tr").removeClass("selected"); if($tgt.is("a")||$tgt.is(":nth-child(7)")||$tgt.is(":nth-child(8)")||$tgt.is(":nth-child(9)")||$tgt.is(":nth-child(10)")){ @@ -50,7 +51,6 @@ $(document).ready(function(){ var left = position.left+5; $(".linktools",row).show().css("position","absolute").css("top",top).css("left",left); } - var row = $(this).parent(); row.addClass("selected"); }); $("form[name='f']").submit(function(){ -- 2.39.5