mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Close taglist dropdown if the sidebox scrolls, as this leaves the dropdown behind
This commit is contained in:
parent
f9b5b2fc1e
commit
80c1097265
@ -328,9 +328,12 @@ var et2_taglist = (function(){ "use strict"; return et2_selectbox.extend([et2_IR
|
||||
this.taglist.combobox.height(this.taglist.combobox.height() - (bottom - $j(window).height()) - 5);
|
||||
}
|
||||
|
||||
// Close dropdown if click elsewhere, but wait until after or it
|
||||
// will close immediately
|
||||
// Close dropdown if click elsewhere or scroll the sidebox,
|
||||
// but wait until after or it will close immediately
|
||||
window.setTimeout(function() {
|
||||
$j('.egw_fw_ui_scrollarea').one('scroll mousewheel', function() {
|
||||
taglist.collapse();
|
||||
});
|
||||
$j('body').one('click',function() {
|
||||
taglist.collapse();
|
||||
});},1
|
||||
|
Loading…
Reference in New Issue
Block a user