mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
Do not hide selectbox if the hover is on selectbox options
-Fix quick_add selectbox flickering in FF39
This commit is contained in:
parent
6d4a0f84b5
commit
c1630b5729
@ -160,7 +160,10 @@ egw_LAB.wait(function() {
|
||||
},
|
||||
mouseout: function(ev){
|
||||
// do NOT react on bubbeling events from contained selectbox
|
||||
if (ev.target && ev.target.id != 'quick_add_selectbox' && ev.relatedTarget.id != 'quick_add' && ev.relatedTarget.id !='quick_add_selectbox')
|
||||
if (ev.target && ev.relatedTarget && ev.target.id != 'quick_add_selectbox'
|
||||
&& ev.relatedTarget.id != 'quick_add'
|
||||
&& ev.relatedTarget.id !='quick_add_selectbox'
|
||||
&& ev.relatedTarget.tagName != "OPTION")
|
||||
{
|
||||
$j(this).css({
|
||||
transition: "0.6s ease-out 0s",
|
||||
|
Loading…
Reference in New Issue
Block a user