From f38e1e7a0e92e1680e00667fb898be14221a2319 Mon Sep 17 00:00:00 2001 From: Ian Walls Date: Tue, 4 Oct 2011 12:46:24 -0400 Subject: [PATCH] Bug 6954: z39.50 results highlighting not sticking Moves the highlighting call of the JS up to right after 'row' is defined, so the highlighting will stick even after you click on of the popup menu options Signed-off-by: Nicole C. Engard 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 5adc074668..20150ac7c7 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 @@ -43,6 +43,7 @@ $(document).ready(function(){ var row = $(this).parent(); $(".linktools").hide(); $("tr").removeClass("selected"); + row.addClass("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)")){ return true; } else { @@ -51,7 +52,6 @@ $(document).ready(function(){ var left = position.left+5; $(".linktools",row).show().css("position","absolute").css("top",top).css("left",left); } - row.addClass("selected"); }); $("form[name='f']").submit(function(){ if ($('input[type=checkbox]').filter(':checked').length == 0) { -- 2.20.1