source: main/trunk/greenstone3/web/interfaces/oran/js/jquery-ui-1.8rc1/tests/unit/button/button_events.js@ 24245

Last change on this file since 24245 was 24245, checked in by sjb48, 13 years ago

Oran code for supporting format changes to document.

  • Property svn:executable set to *
File size: 308 bytes
Line 
1/*
2 * button_events.js
3 */
4(function($) {
5
6module("button: events");
7
8test("click-through", function() {
9 expect(2);
10 var set = $("#radio1").buttonset();
11 set.find("input:first").click(function() {
12 ok( true );
13 });
14 ok( set.find("label:first").click().is(".ui-button") );
15});
16
17})(jQuery);
Note: See TracBrowser for help on using the repository browser.