mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
9d71547394
Ref #7053 Ref gh-1411
14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
(function( $ ) {
|
|
|
|
module( "tooltip: (deprecated) options" );
|
|
|
|
test( "tooltipClass", function() {
|
|
expect( 1 );
|
|
var element = $( "#tooltipped1" ).tooltip({
|
|
tooltipClass: "custom"
|
|
}).tooltip( "open" );
|
|
ok( $( "#" + element.data( "ui-tooltip-id" ) ).hasClass( "custom" ) );
|
|
});
|
|
|
|
}( jQuery ) );
|