Tooltip video player demo: Close tooltip on click of popup button.

This commit is contained in:
Scott González 2011-05-29 09:13:35 -04:00
parent 8fc6ee6a19
commit a1f9ca7248

View File

@ -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 );
});
}