mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Tooltip video player demo: Close tooltip on click of popup button.
This commit is contained in:
parent
8fc6ee6a19
commit
a1f9ca7248
@ -85,9 +85,12 @@
|
||||
},
|
||||
text: !!$( this ).attr( "title" )
|
||||
});
|
||||
if ( !button.next().is( ":ui-popup" ) ) {
|
||||
if ( button.next().is( ":ui-popup" ) ) {
|
||||
button.click(function( event ) {
|
||||
$( ".demo" ).tooltip( "close", event );
|
||||
});
|
||||
} else {
|
||||
button.click(function() {
|
||||
console.log( "click" );
|
||||
notify( button );
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user