Merge pull request #209 from Doha2012/master

small fix
This commit is contained in:
Eugen 2015-05-13 11:01:27 +01:00
commit 178e7bf0b4
2 changed files with 10 additions and 0 deletions

View File

@ -111,6 +111,11 @@ border-color: #ddd;
$( "#sr" ).autocomplete({ $( "#sr" ).autocomplete({
source: "subredditAutoComplete" source: "subredditAutoComplete"
}); });
$("input[name='url'],input[name='sr']").focus(function (){
$("#checkResult").hide();
});
}); });
</script> </script>

View File

@ -102,6 +102,11 @@ function predicateResponse(){
$( "#sr" ).autocomplete({ $( "#sr" ).autocomplete({
source: "subredditAutoComplete" source: "subredditAutoComplete"
}); });
$("input[name='url'],input[name='sr']").focus(function (){
$("#checkResult").hide();
});
}); });
</script> </script>