Prevents form from submitting

Only the category form prevented submitting, the full site-search didn't. Changed the class so it includes both forms :)
This commit is contained in:
MrLuit 2016-11-25 17:46:35 +01:00 committed by GitHub
commit 6a26077151

View file

@ -240,7 +240,7 @@
$("div.row.search-results").hide();
}
});
$("form.search").submit(function(e){
$("form.navbar-form").submit(function(e){
e.preventDefault();
});