Fix quick-add plus button stops to be able to click on logout button in Safari

This commit is contained in:
Hadi Nategh 2014-08-25 15:13:21 +00:00
parent 2b98a9b64c
commit db7b148c88

View File

@ -172,7 +172,8 @@ egw_LAB.wait(function() {
}); });
$j('select', this).css({ $j('select', this).css({
transition: "0.1s linear 0.2s", transition: "0.1s linear 0.2s",
visibility: "visible" visibility: "visible",
width:"120px"
}); });
} }
ev.stopPropagation(); ev.stopPropagation();
@ -189,7 +190,8 @@ egw_LAB.wait(function() {
}); });
$j('select', this).css({ $j('select', this).css({
transition: "0s linear 0s", transition: "0s linear 0s",
visibility: "hidden" visibility: "hidden",
width:"10px"
}); });
} }
ev.stopPropagation(); ev.stopPropagation();
@ -204,7 +206,8 @@ egw_LAB.wait(function() {
}); });
$j('select', this).css({ $j('select', this).css({
transition: "0s linear 0s", transition: "0s linear 0s",
visibility: "hidden" visibility: "hidden",
width:"10px"
}); });
} }
}); });