diff options
author | Ca-Phun Ung <pazu2k@gmail.com> | 2008-10-02 18:06:30 +0000 |
---|---|---|
committer | Ca-Phun Ung <pazu2k@gmail.com> | 2008-10-02 18:06:30 +0000 |
commit | 5958c417f65cf779845cae2d107926fbaf6c7f7f (patch) | |
tree | ed8e6a5d1e5eb0338419ff4ba45f7843ce0d744f /tests | |
parent | c2b0afd3e7dce76f01fa6661993cbf08105d22cb (diff) | |
download | jquery-ui-5958c417f65cf779845cae2d107926fbaf6c7f7f.tar.gz jquery-ui-5958c417f65cf779845cae2d107926fbaf6c7f7f.zip |
Spinner: added thousand separator format to numbers and refactored code.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spinner.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/spinner.js b/tests/spinner.js index 507d2c897..ef20274ab 100644 --- a/tests/spinner.js +++ b/tests/spinner.js @@ -240,7 +240,7 @@ test("spin with auto-incremental stepping", function() { el.simulate("keyup",{keyCode:$.simulate.VK_DOWN}); - equals(el.val(), -1800, "keydown 210 times (300-100-100*10-10*100)"); + equals(el.val(), '-1,800', "keydown 210 times (300-100-100*10-10*100)"); }); |