diff options
author | Guillaume (ioguix) de Rorthais | 2010-09-22 22:13:41 +0000 |
---|---|---|
committer | Guillaume (ioguix) de Rorthais | 2010-09-23 00:13:54 +0000 |
commit | b275e5d06055866e31aeafc5188bbe0e971d77e4 (patch) | |
tree | 92ed309eed760fe8f074633d56141a045fea7ef4 | |
parent | 77e44ae125110d27b8c7bd5aefe864faf2b5bda7 (diff) |
Fix: on insert form, clicking on a field open the auto-complete list even if ac is disabled
-rw-r--r-- | js/ac_insert_row.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |