recherche

This commit is contained in:
Nicolas Bally 2020-09-29 14:55:26 +02:00
parent d55a993cfd
commit 14b08cf87d

View File

@ -312,3 +312,11 @@
:javascript
$('.qi_search_row form input').keypress(function (e) {
if (e.which == 13) {
$(this).closest('form').submit();
return false; //<---- Add this line
}
});