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

@@ -54,4 +54,8 @@ if ($('#branchList').length) {
valueNames: ['item']
};
var repoList = new List('branchList', listBranchOptions);
}
}
$('.search').click(function (e) {
e.stopPropagation();
});