mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
17 lines
322 B
JavaScript
17 lines
322 B
JavaScript
/*
|
|
* button_events.js
|
|
*/
|
|
(function($) {
|
|
|
|
module("button: events");
|
|
|
|
test("buttonset works with single-quote named elements (#7505)", function() {
|
|
expect( 1 );
|
|
$("#radio3").buttonset();
|
|
$("#radio33").click( function(){
|
|
ok( true, "button clicks work with single-quote named elements" );
|
|
}).click();
|
|
});
|
|
|
|
})(jQuery);
|