mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 00:46:03 +00:00
Backport bootstrap-typeahead click fix to make clicking on autocomplete more reliable
This is the patch described here:
https://github.com/twitter/bootstrap/issues/2715
92189b87ad
That commit has not been upstreamed to bootstrap due to bureaucracy issues.
(imported from commit 3c4a109b58f403569a41f5048ab347a800f029c2)
This commit is contained in:
@@ -2028,7 +2028,11 @@
|
||||
|
||||
, blur: function (e) {
|
||||
var that = this
|
||||
setTimeout(function () { that.hide() }, 150)
|
||||
setTimeout(function () {
|
||||
if (!that.$menu.is(':hover')) {
|
||||
that.hide();
|
||||
}
|
||||
}, 150)
|
||||
}
|
||||
|
||||
, click: function (e) {
|
||||
|
||||
Reference in New Issue
Block a user