Hide unused search params during submission

Fixes #3871.
pull/3973/head
Isaac Levy 2018-01-11 20:09:03 -05:00
parent c77e57fe0b
commit dd0933879a
1 changed files with 1 additions and 0 deletions

View File

@ -82,6 +82,7 @@ $(function() {
});
$form.submit(function() {
$form.find("input,select").filter(function() { return !this.value; }).attr("disabled", "disabled");
$(this).addClass('searching');
});