diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-05-13 23:09:30 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-05-13 23:09:30 +0200 |
commit | 7ed32a764cc0ffe8335affec37f28f63d9fd52c5 (patch) | |
tree | e51e360d51c9c22ba22f9f4902cd4cf44026882f /view/js/mod_connections.js | |
parent | 4f69bcfc38290db87c97645e311fda7a48e1468e (diff) | |
download | volse-hubzilla-7ed32a764cc0ffe8335affec37f28f63d9fd52c5.tar.gz volse-hubzilla-7ed32a764cc0ffe8335affec37f28f63d9fd52c5.tar.bz2 volse-hubzilla-7ed32a764cc0ffe8335affec37f28f63d9fd52c5.zip |
consolidate recent autocomplete changes
Diffstat (limited to 'view/js/mod_connections.js')
-rw-r--r-- | view/js/mod_connections.js | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/view/js/mod_connections.js b/view/js/mod_connections.js index 68add4eed..db18e078d 100644 --- a/view/js/mod_connections.js +++ b/view/js/mod_connections.js @@ -3,14 +3,3 @@ $(document).ready(function() { $(".autotime").timeago(); }); -$("#contacts-search").keyup(function(event){ - if(event.keyCode == 13){ - $("#contacts-search").click(); - } -}); -$(".autocomplete-w1 .selected").keyup(function(event){ - if(event.keyCode == 13){ - $("#contacts-search").click(); - } -}); - |