From: phasefx Date: Wed, 23 Sep 2009 18:25:39 +0000 (+0000) Subject: asterisk next to the Items Out count (under the nav button) only if there are overdue... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=da25230e0b049222b68c5319704c24919d3f0cb6;p=contrib%2FConifer.git 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 --- 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);