[open-ils-commits] [GIT] Evergreen ILS branch master updated. c2a60e545a4c950879c694a91004b50f955801ae
Evergreen Git
git at git.evergreen-ils.org
Thu Sep 22 16:59:06 EDT 2011
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, master has been updated
via c2a60e545a4c950879c694a91004b50f955801ae (commit)
from 9b4693f07a26eed41dfdd98cbc8a59a1a6070962 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c2a60e545a4c950879c694a91004b50f955801ae
Author: Bill Erickson <berick at esilibrary.com>
Date: Thu Sep 22 16:55:50 2011 -0400
TPac: repair IE check-all action on transaction list
IE does not respond to 'onchange' for checkboxes? Use onclick
instead...
Signed-off-by: Bill Erickson <berick at esilibrary.com>
diff --git a/Open-ILS/src/templates/opac/myopac/main.tt2 b/Open-ILS/src/templates/opac/myopac/main.tt2
index d32f0a5..158e597 100644
--- a/Open-ILS/src/templates/opac/myopac/main.tt2
+++ b/Open-ILS/src/templates/opac/myopac/main.tt2
@@ -23,7 +23,7 @@
<td>[% l("Balance Owed") %]</td>
<td nowrap="nowrap" style="white-space:nowrap;">
<input id="pay_fines_box1" checked="checked"
- type="checkbox" onchange="select_all_checkboxes('xact', this.checked)"
+ type="checkbox" onclick="select_all_checkboxes('xact', this.checked)"
title="[% l('Click to (un)select all fines') %]" />
<label for="pay_fines_box1">[% l('Pay Fines') %]</label>
</td>
@@ -113,7 +113,7 @@
<td width='4%' align="center" nowrap="nowrap"
style="white-space:nowrap;">
<input id="pay_fines_box2" checked="checked"
- type="checkbox" onchange="select_all_checkboxes('xact_misc', this.checked)"
+ type="checkbox" onclick="select_all_checkboxes('xact_misc', this.checked)"
title="[% l('Click to (un)select all fines') %]" />
<label for="pay_fines_box2">[% l("Pay Fines") %]</label>
</td>
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/templates/opac/myopac/main.tt2 | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list