diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-06-08 11:27:06 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-06-08 11:27:06 +0200 |
commit | 1f2699675d53019a9e42bfa7b60de1f23812b39d (patch) | |
tree | 7fd4fc7717113223be4317b89946aa2488179713 /program/js/app.js | |
parent | 594746a1e1612e7119610a4478e7aa04db420959 (diff) |
Fix mouse selection on autocomplete lists
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 1903561af..499e2a2de 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -4517,7 +4517,7 @@ function rcube_webmail() // register (delegate) event handlers ul.on('mouseover', 'li', function(e){ ref.ksearch_select(e.target); }) - .on('onmouseup', 'li', function(e){ ref.ksearch_click(e.target); }) + .on('mouseup', 'li', function(e){ ref.ksearch_click(e.target); }) } ul = this.ksearch_pane.__ul; |