source: main/trunk/greenstone3/web/interfaces/oran/js/jquery-ui-1.8rc1/tests/unit/progressbar/progressbar_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: 287 bytes
Line 
1/*
2 * progressbar_events.js
3 */
4(function($) {
5
6module("progressbar: events");
7
8test("change", function() {
9 expect(1);
10 $("#progressbar").progressbar({
11 change: function() {
12 same( 5, $(this).progressbar("value") );
13 }
14 }).progressbar("value", 5);
15});
16
17})(jQuery);
Note: See TracBrowser for help on using the repository browser.