From d051d74de40e4307ff4e5f5d71de26106441185b Mon Sep 17 00:00:00 2001 From: miker Date: Wed, 3 Feb 2010 15:26:10 +0000 Subject: [PATCH] Patch from Bill Ott (after problem identification by Dan Wells) to address styling of shadowed records in the staff client git-svn-id: svn://svn.open-ils.org/ILS/trunk@15439 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/web/opac/skin/default/js/result_common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/opac/skin/default/js/result_common.js b/Open-ILS/web/opac/skin/default/js/result_common.js index 300b5712ae..549fd0a64d 100644 --- a/Open-ILS/web/opac/skin/default/js/result_common.js +++ b/Open-ILS/web/opac/skin/default/js/result_common.js @@ -739,7 +739,7 @@ function resultDisplayCopyCounts(rec, pagePosition, copy_counts) { /* here we style opac-invisible records for xul */ if( cts.depth == 0 ) { - if(!cts.transcendant && !cts.unshadow) { + if(cts.transcendant == null && cts.unshadow == 0) { _debug("found an opac-shadowed record: " + rec.doc_id()); var row = cell.parentNode.parentNode.parentNode.parentNode.parentNode; if( cts.count == 0 ) -- 2.11.0