[open-ils-commits] r13773 - trunk/Open-ILS/xul/staff_client/server/patron (phasefx)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Jul 29 05:09:25 EDT 2009


Author: phasefx
Date: 2009-07-29 05:09:19 -0400 (Wed, 29 Jul 2009)
New Revision: 13773

Modified:
   trunk/Open-ILS/xul/staff_client/server/patron/standing_penalties.js
Log:
for now, disable refresh of entire patron interface after penalty manipulation.  What we're really avoiding is the stop-sign page.  Want to revamp how the patron interface works here to make use of observers.

Modified: trunk/Open-ILS/xul/staff_client/server/patron/standing_penalties.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/standing_penalties.js	2009-07-29 09:05:03 UTC (rev 13772)
+++ trunk/Open-ILS/xul/staff_client/server/patron/standing_penalties.js	2009-07-29 09:09:19 UTC (rev 13773)
@@ -163,9 +163,11 @@
                 rows[ penalty.id() ] = row_params;
                 list.append( row_params );
             }
+            /*
             if (xulG && typeof xulG.refresh == 'function') {
                 xulG.refresh();
             }
+            */
             document.getElementById('progress').hidden = true;
 
         } catch(E) {
@@ -188,9 +190,11 @@
         } 
         funcs.push(
             function() {
+                /*
                 if (xulG && typeof xulG.refresh == 'function') {
                     xulG.refresh();
                 }
+                */
                 document.getElementById('progress').hidden = true;
             }
         );



More information about the open-ils-commits mailing list