mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
16 lines
416 B
JavaScript
16 lines
416 B
JavaScript
/*
|
|
* button_tickets.js
|
|
*/
|
|
(function($) {
|
|
|
|
module("button: tickets");
|
|
|
|
test("#5946 - buttonset should ignore buttons that are not :visible", function() {
|
|
$( "#radio01" ).next().wrap( "<div></div>" ).parent().hide();
|
|
var set = $( "#radio0" ).buttonset();
|
|
ok( set.find( "label:eq(0)" ).is( ".ui-button:not(.ui-corner-left)" ) );
|
|
ok( set.find( "label:eq(1)" ).is( ".ui-button.ui-corner-left" ) );
|
|
});
|
|
|
|
})(jQuery);
|