remove keyhandler for enter key again

It didn't work with autocomplete.js when selecting a proposal.
This commit is contained in:
2017-09-23 13:27:53 +02:00
parent d797a3c9ec
commit 4360944683

View File

@@ -3,12 +3,6 @@ $(document).ready(function(){
$('#search-submit').click(plot);
$('#search-input').keypress(function(e) {
if(e.which == 13) {
plot();
}
});
renderGroupBy();
updateSearchLimitValue();