From: Jared Camins-Esakov <[email protected]> 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.
Signed-off-by: Nicole C. Engard <[email protected]> --- 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 _______________________________________________ Koha-patches mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
