Merge pull request #26558 from woocommerce/fix/26555
Fix tooltip flashing
This commit is contained in:
commit
d74b73f014
|
@ -123,7 +123,8 @@ jQuery( function ( $ ) {
|
|||
'attribute': 'data-tip',
|
||||
'fadeIn': 50,
|
||||
'fadeOut': 50,
|
||||
'delay': 200
|
||||
'delay': 200,
|
||||
'keepAlive': true
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -9,7 +9,8 @@ jQuery( function ( $ ) {
|
|||
'attribute': 'data-tip',
|
||||
'fadeIn': 50,
|
||||
'fadeOut': 50,
|
||||
'delay': 200
|
||||
'delay': 200,
|
||||
'keepAlive': true
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -188,7 +188,8 @@
|
|||
'attribute': 'data-tip',
|
||||
'fadeIn': 50,
|
||||
'fadeOut': 50,
|
||||
'delay': 200
|
||||
'delay': 200,
|
||||
'keepAlive': true
|
||||
} );
|
||||
|
||||
$( '.column-wc_actions .wc-action-button' ).tipTip( {
|
||||
|
@ -203,7 +204,8 @@
|
|||
'attribute': 'data-tip',
|
||||
'fadeIn': 50,
|
||||
'fadeOut': 50,
|
||||
'delay': 200
|
||||
'delay': 200,
|
||||
'keepAlive': true
|
||||
} ).css( 'cursor', 'help' );
|
||||
});
|
||||
});
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
org_elem.hover(function(){
|
||||
active_tiptip();
|
||||
}, function(){
|
||||
if(!opts.keepAlive){
|
||||
if(!opts.keepAlive || !tiptip_holder.is(':hover')){
|
||||
deactive_tiptip();
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue