summaryrefslogtreecommitdiffstats
path: root/public/js
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-08-31 17:10:28 +0900
committerUnknwon <u@gogs.io>2015-08-31 17:10:28 +0900
commitee3e0c3c49d2a4bf9a33386ab22d4c521e5016b6 (patch)
treecad513eb19b70e634e167286f3668a3cf245ff81 /public/js
parent1ca257ad9f90084f4140bd1df4692f9a56c83ad4 (diff)
downloadgitea-ee3e0c3c49d2a4bf9a33386ab22d4c521e5016b6.tar.gz
gitea-ee3e0c3c49d2a4bf9a33386ab22d4c521e5016b6.zip
fix dropdown search
Diffstat (limited to 'public/js')
-rw-r--r--public/js/gogs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/gogs.js b/public/js/gogs.js
index 41e1c55ed8..aed4ec7ac6 100644
--- a/public/js/gogs.js
+++ b/public/js/gogs.js
@@ -188,7 +188,7 @@ function initRepository() {
var $prompt_span = $('#repo-name-change-prompt');
if ($(this).val().toLowerCase() != $(this).data('repo-name').toLowerCase()) {
$prompt_span.show();
- }else{
+ } else {
$prompt_span.hide();
}
});