diff options
author | Unknwon <u@gogs.io> | 2015-11-22 02:29:20 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-11-22 02:29:20 -0500 |
commit | e6b2a01e5d4f556ce35d4343094b74dc680d7cce (patch) | |
tree | a3328ea3519feaa86dff6796c4383cbd401dc40c /public/js | |
parent | 52c8f691630548fe091d30bcfe8164545a05d3d5 (diff) | |
download | gitea-e6b2a01e5d4f556ce35d4343094b74dc680d7cce.tar.gz gitea-e6b2a01e5d4f556ce35d4343094b74dc680d7cce.zip |
minor JS fix
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/gogs.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/public/js/gogs.js b/public/js/gogs.js index 0fd2b46ab9..599f363787 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -626,6 +626,7 @@ function searchUsers() { hideWhenLostFocus('#search-user-box .results', '#search-user-box'); } +// FIXME: merge common parts in two functions function searchRepositories() { if (!$('#search-repo-box .results').length) { return; @@ -671,6 +672,7 @@ function searchRepositories() { $search_repo_box.find('input').focus(function () { $search_repo_box.keyup(); }); + hideWhenLostFocus('#search-repo-box .results', '#search-repo-box'); } $(document).ready(function () { |