mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
several IE11 fixes avoiding or working around javascript errors
This commit is contained in:
parent
b423456469
commit
e44daf1c8f
@ -151,7 +151,7 @@ egw_LAB.wait(function() {
|
||||
$j('#quick_add').on({
|
||||
mouseover: function(ev){
|
||||
// do NOT react on bubbeling events from contained selectbox
|
||||
if (ev.relatedTarget.id != 'quick_add_selectbox')
|
||||
if (ev.relatedTarget && ev.relatedTarget.id != 'quick_add_selectbox')
|
||||
{
|
||||
$j(this).css({
|
||||
transition: "0.2s ease-out 0s",
|
||||
@ -168,7 +168,7 @@ egw_LAB.wait(function() {
|
||||
},
|
||||
mouseout: function(ev){
|
||||
// do NOT react on bubbeling events from contained selectbox
|
||||
if (ev.relatedTarget.id != 'quick_add_selectbox')
|
||||
if (ev.relatedTarget && ev.relatedTarget.id != 'quick_add_selectbox')
|
||||
{
|
||||
$j(this).css({
|
||||
transition: "0.2s ease-out 0s",
|
||||
|
Loading…
Reference in New Issue
Block a user