mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
17 lines
220 B
JavaScript
17 lines
220 B
JavaScript
/*
|
|
* button_methods.js
|
|
*/
|
|
(function($) {
|
|
|
|
|
|
module("button: methods");
|
|
|
|
test("destroy", function() {
|
|
expect( 1 );
|
|
domEqual( "#button", function() {
|
|
$( "#button" ).button().button( "destroy" );
|
|
});
|
|
});
|
|
|
|
})(jQuery);
|