[Koha-patches] [PATCH] [SIGNED-OFF] Bug 6924: z39.50 results highlighting not sticking

Nicole C. Engard nengard at bywatersolutions.com
Sun Oct 2 13:10:54 CEST 2011


From: Ian Walls <ian.walls at bywatersolutions.com>

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

http://bugs.koha-community.org/show_bug.cgi?id=6954
Signed-off-by: Nicole C. Engard <nengard at bywatersolutions.com>
---
 .../prog/en/modules/cataloguing/z3950_search.tt    |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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 5adc074..20150ac 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) {
-- 
1.7.2.3



More information about the Koha-patches mailing list