diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2016-03-10 13:07:39 +0100 |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2016-03-10 13:07:39 +0100 |
commit | 95d22a09c906f8417eaced6cf7ddc70987478fac (patch) | |
tree | 302d718f654507803c0cf4e658f9f3820f3d06a5 | |
parent | 8eff748533a7b47d1d8156bbb3212647ca0f5d1f (diff) | |
download | webadmin-95d22a09c906f8417eaced6cf7ddc70987478fac.tar.gz |
Fix bug where hitting Enter in autocompletion list would close ACL dialog (T1109)
-rw-r--r-- | public_html/js/kolab_admin.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/public_html/js/kolab_admin.js b/public_html/js/kolab_admin.js index c7af191..249da95 100644 --- a/public_html/js/kolab_admin.js +++ b/public_html/js/kolab_admin.js @@ -534,7 +534,8 @@ function kolab_admin() this.ac_insert(this.ac_selected); this.ac_stop(); - return e.stopPropagation(); + e.stopPropagation(); + return false; case 27: // escape this.ac_stop(); |