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