jquery-ui/tests/unit/button/button_events.js

17 lines
322 B
JavaScript
Raw Normal View History

2010-01-20 14:00:14 +00:00
/*
* button_events.js
*/
(function($) {
2010-01-20 14:00:14 +00:00
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();
});
2010-01-20 14:00:14 +00:00
})(jQuery);