aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/button/button_events.js
blob: 17f505458525b2e9c9d20201074322b152810cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * button_events.js
 */
(function($) {

module("button: events");

test("click-through", function() {
	expect(2);
	var set = $("#radio1").buttonset();
	set.find("input:first").click(function() {
		ok( true );
	});
	ok( set.find("label:first").click().is(".ui-button") );
});

})(jQuery);