[open-ils-commits] r15440 - branches/rel_1_6/Open-ILS/web/opac/skin/default/js (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Feb 3 10:31:57 EST 2010


Author: miker
Date: 2010-02-03 10:31:55 -0500 (Wed, 03 Feb 2010)
New Revision: 15440

Modified:
   branches/rel_1_6/Open-ILS/web/opac/skin/default/js/result_common.js
Log:
Backporting r15439: Patch from Bill Ott (after problem identification by Dan Wells) to address styling of shadowed records in the staff client

Modified: branches/rel_1_6/Open-ILS/web/opac/skin/default/js/result_common.js
===================================================================
--- branches/rel_1_6/Open-ILS/web/opac/skin/default/js/result_common.js	2010-02-03 15:26:10 UTC (rev 15439)
+++ branches/rel_1_6/Open-ILS/web/opac/skin/default/js/result_common.js	2010-02-03 15:31:55 UTC (rev 15440)
@@ -739,7 +739,7 @@
 			/* 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 ) 



More information about the open-ils-commits mailing list