Fix dropdown closing when search field clicked

This commit is contained in:
Kyle Hornberg
2014-02-24 09:52:49 -06:00
parent e7d2ee8000
commit feaddc8bc9

View File

@@ -55,3 +55,7 @@ if ($('#branchList').length) {
};
var repoList = new List('branchList', listBranchOptions);
}
$('.search').click(function (e) {
e.stopPropagation();
});