From: Jared Camins-Esakov To: dev@bywatersolutions.com Cc: Jared Camins-Esakov Subject: [PATCH] Bug 5815: Double clicking submits patron selection Date: Mon, 28 Feb 2011 13:40:08 -0500 Message-Id: <1298918408-4148-1-git-send-email-jcamins@bywatersolutions.com> X-Mailer: git-send-email 1.7.2.3 X-Original-Sender: jcamins@bywatersolutions.com X-Original-Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.216.42 is neither permitted nor denied by best guess record for domain of jcamins@bywatersolutions.com) smtp.mail=jcamins@bywatersolutions.com X-Google-Group-Id: -607656515 Precedence: list Mailing-list: list dev@bywatersolutions.com; contact dev+owners@bywatersolutions.com List-ID: List-Help: , Content-Type: text/plain; charset="utf-8" Double clicking on an item in the list of matching names now automatically submits the form when checking out to a patron by name rather than barcode. --- circ/circulation.pl | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index ab681f1..8a184d1 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -494,6 +494,7 @@ if ($borrowerslist) { -id => 'borrowernumber', -values => \@values, -labels => \%labels, + -ondblclick => 'document.forms[\'mainform\'].submit()', -size => 7, -tabindex => '', -multiple => 0 -- 1.7.2.3