From b275e5d06055866e31aeafc5188bbe0e971d77e4 Mon Sep 17 00:00:00 2001 From: "Guillaume (ioguix) de Rorthais" Date: Thu, 23 Sep 2010 00:13:41 +0200 Subject: [PATCH] Fix: on insert form, clicking on a field open the auto-complete list even if ac is disabled --- js/ac_insert_row.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.39.5