[open-ils-commits] r14610 - tags/rel_1_6_0_0/Open-ILS/xul/staff_client/server/patron (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Mon Oct 26 12:00:34 EDT 2009
Author: phasefx
Date: 2009-10-26 12:00:31 -0400 (Mon, 26 Oct 2009)
New Revision: 14610
Modified:
tags/rel_1_6_0_0/Open-ILS/xul/staff_client/server/patron/display.js
Log:
backporting part of 14606, disabling the auto-hide patron summary behavior by default
Modified: tags/rel_1_6_0_0/Open-ILS/xul/staff_client/server/patron/display.js
===================================================================
--- tags/rel_1_6_0_0/Open-ILS/xul/staff_client/server/patron/display.js 2009-10-26 16:00:17 UTC (rev 14609)
+++ tags/rel_1_6_0_0/Open-ILS/xul/staff_client/server/patron/display.js 2009-10-26 16:00:31 UTC (rev 14610)
@@ -665,8 +665,9 @@
this.controller.view.cmd_patron_bills.setAttribute('style','');
this.controller.view.cmd_standing_penalties.setAttribute('style','');
this.controller.view[ btn ].setAttribute('style','background: blue; color: white;');
+ var auto_hide_patron_sidebar = String( this.OpenILS.data.hash.aous['circ.auto_hide_patron_summary'] ) == 'true';
var x = document.getElementById('splitter_grippy');
- if (x && ! dont_hide_summary) {
+ if (x && auto_hide_patron_sidebar && ! dont_hide_summary) {
if (! this.summary_hidden_once_already ) {
var first_deck = x.parentNode.previousSibling;
if (! first_deck.collapsed) x.doCommand();
More information about the open-ils-commits
mailing list