aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/tooltip/deprecated.js
blob: 057171ee26223fd5715d9652321691094040383e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
define( [
	"jquery",
	"ui/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" );
});

} );
pan class="p">> <script src="../../ui/button.js"></script> <script src="../../ui/position.js"></script> <script src="../../ui/menu.js"></script> <link rel="stylesheet" href="../demos.css"> <style> .ui-menu { position: absolute; width: 100px; } </style> <script> $(function() { $( "#rerun" ) .button() .click(function() { alert( "Running the last action" ); }) .next() .button({ text: false, icons: { primary: "ui-icon-triangle-1-s" } }) .click(function() { var menu = $( this ).parent().next().show().position({ my: "left top", at: "left bottom", of: this }); $( document ).one( "click", function() { menu.hide(); }); return false; }) .parent() .buttonset() .next() .hide() .menu(); }); </script> </head> <body> <div> <div> <button id="rerun">Run last action</button> <button id="select">Select an action</button> </div> <ul> <li><div>Open...</div></li> <li><div>Save</div></li> <li><div>Delete</div></li> </ul> </div> <div class="demo-description"> <p>An example of a split button built with two buttons: A plain button with just text, one with only a primary icon and no text. Both are grouped together in a set.</p> </div> </body> </html>