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

svn at svn.open-ils.org svn at svn.open-ils.org
Fri May 29 23:01:12 EDT 2009


Author: miker
Date: 2009-05-29 23:01:10 -0400 (Fri, 29 May 2009)
New Revision: 13266

Modified:
   branches/rel_1_4_0/Open-ILS/web/opac/skin/default/js/rdetail.js
Log:
backporting fix for one-character thinko in baseline online resource display, discovered by Warren Layton -- thanks Warren!

Modified: branches/rel_1_4_0/Open-ILS/web/opac/skin/default/js/rdetail.js
===================================================================
--- branches/rel_1_4_0/Open-ILS/web/opac/skin/default/js/rdetail.js	2009-05-30 03:00:38 UTC (rev 13265)
+++ branches/rel_1_4_0/Open-ILS/web/opac/skin/default/js/rdetail.js	2009-05-30 03:01:10 UTC (rev 13266)
@@ -232,7 +232,7 @@
 				}
 			}
 			$('rdetail_online').appendChild(elem('a', {href:href,'class':'classic_link'}, displayLabel));
-			if (!note && note != displayLabel) {
+			if (note && note != displayLabel) {
 				$('rdetail_online').appendChild(elem('span', {'class':'url_note'}, ' - ' + note));
 			}
 			$('rdetail_online').appendChild(elem('br'));



More information about the open-ils-commits mailing list