aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/tooltip/tooltip_deprecated.js
blob: 426f583ec6d26ccdab3ca0850b679eab1a6265cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(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 ) );