diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-11-07 01:41:12 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-11-07 01:41:12 +0000 |
commit | 8cde7476d36836b24fceb1043386bb445624a345 (patch) | |
tree | 8919f1e925c4249fcff595019aade873ba4ce0bc | |
parent | bba3d31e8286a01f5ee42f73c17766c3081367fc (diff) | |
download | jquery-ui-8cde7476d36836b24fceb1043386bb445624a345.tar.gz jquery-ui-8cde7476d36836b24fceb1043386bb445624a345.zip |
Progressbar Tests: Fixed default option tests (and updated documentation).
-rw-r--r-- | tests/progressbar.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/progressbar.js b/tests/progressbar.js index a490c0355..98f437901 100644 --- a/tests/progressbar.js +++ b/tests/progressbar.js @@ -27,8 +27,8 @@ test("defaults", function() { el = $("#progressbar").progressbar(); equals(el.data("width.progressbar"), 300, "width"); - equals(el.data("duration.progressbar"), 3000, "duration"); - equals(el.data("interval.progressbar"), 200, "interval"); + equals(el.data("duration.progressbar"), 1000, "duration"); + equals(el.data("interval.progressbar"), 1000, "interval"); equals(el.data("increment.progressbar"), 1, "increment"); equals(el.data("range.progressbar"), true, "range"); |