mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-04-20 03:02:41 -04:00
28 lines
755 B
JavaScript
28 lines
755 B
JavaScript
(function( $ ) {
|
|
|
|
module( "tooltip: methods" );
|
|
|
|
test( "destroy", function() {
|
|
var beforeHtml = $( "#tooltipped1" ).parent().html();
|
|
var afterHtml = $( "#tooltipped1" ).tooltip().tooltip( "destroy" ).parent().html();
|
|
equal( afterHtml, beforeHtml );
|
|
});
|
|
|
|
test( "open", function() {
|
|
var element = $( "#tooltipped1" ).tooltip();
|
|
element.tooltip( "open" );
|
|
ok( $( ".ui-tooltip" ).is( ":visible" ) );
|
|
});
|
|
|
|
/*
|
|
TODO currently tooltip doesn't override widget
|
|
can't return anything useful if no element is kept around and there's no useful reference
|
|
test("widget", function() {
|
|
var tooltip = $("#tooltipped1").tooltip();
|
|
same(tooltip.tooltip("widget")[0], $(".ui-tooltip")[0]);
|
|
same(tooltip.tooltip("widget").end()[0], tooltip[0]);
|
|
});
|
|
*/
|
|
|
|
}( jQuery ) );
|