mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
a0892eca70
Ref #14246
17 lines
346 B
JavaScript
17 lines
346 B
JavaScript
define( [
|
|
"jquery",
|
|
"ui/widgets/tooltip"
|
|
], function( $ ) {
|
|
|
|
module( "tooltip: (deprecated) options" );
|
|
|
|
test( "tooltipClass", function( assert ) {
|
|
expect( 1 );
|
|
var element = $( "#tooltipped1" ).tooltip( {
|
|
tooltipClass: "custom"
|
|
} ).tooltip( "open" );
|
|
assert.hasClasses( $( "#" + element.data( "ui-tooltip-id" ) ), "custom" );
|
|
} );
|
|
|
|
} );
|