From da25230e0b049222b68c5319704c24919d3f0cb6 Mon Sep 17 00:00:00 2001 From: phasefx Date: Wed, 23 Sep 2009 18:25:39 +0000 Subject: [PATCH] asterisk next to the Items Out count (under the nav button) only if there are overdue items git-svn-id: svn://svn.open-ils.org/ILS/trunk@14131 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/patron/summary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/patron/summary.js b/Open-ILS/xul/staff_client/server/patron/summary.js index 7f846813a7..16eaa0034c 100644 --- a/Open-ILS/xul/staff_client/server/patron/summary.js +++ b/Open-ILS/xul/staff_client/server/patron/summary.js @@ -261,7 +261,7 @@ patron.summary.prototype = { if (e5) e5.setAttribute('value', robj.lost ); if (under_btn) under_btn.setAttribute('value', String( robj.out + robj.overdue + robj.claims_returned + robj.long_overdue) + - ( robj.overdue > 0 || robj.claims_returned > 0 || robj.long_overdue > 0 ? '*' : '' ) + ( robj.overdue > 0 ? '*' : '' ) ); } catch(E) { alert(E); -- 2.11.0