From: Guillaume (ioguix) de Rorthais Date: Wed, 22 Sep 2010 22:13:41 +0000 (+0200) Subject: Fix: on insert form, clicking on a field open the auto-complete list even if ac is... X-Git-Tag: REL_5-0-BETA-2~12 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=b275e5d06055866e31aeafc5188bbe0e971d77e4;p=phppgadmin.git Fix: on insert form, clicking on a field open the auto-complete list even if ac is disabled --- diff --git a/js/ac_insert_row.js b/js/ac_insert_row.js index 3517becb..120a5798 100644 --- a/js/ac_insert_row.js +++ b/js/ac_insert_row.js @@ -213,7 +213,7 @@ jQuery(document).ready(function () { /* open the list when the field get the focus */ jQuery.ppa.attrs .focus(function (e) { - openlist(this); + $(this).keyup(); }); /* enable/disable auto-complete according to the checkbox */