Skip to content
Snippets Groups Projects
Commit 64656bda authored by gloas's avatar gloas
Browse files

autoHideShowTagOnParentHover: correction bug lorsqu un select est focus qui...

autoHideShowTagOnParentHover: correction bug lorsqu un select est focus qui empechait les autre tags de fadeOut
parent 1f73e035
Branches
Tags
No related merge requests found
......@@ -84,8 +84,8 @@ var autoHideShowTagOnParentHover = function (child_selector, parent_selector) {
},
function() {
if (!$('select').is(":focus"))
$(this).find(child_selector).fadeOut();
if (!$(this).find('select').is(":focus"))
$(parent_selector).find(child_selector).fadeOut();
}
);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment