diff options
author | Richard Worth <rdworth@gmail.com> | 2008-11-14 03:00:16 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-11-14 03:00:16 +0000 |
commit | 7ea535fa1df43e8259ab9987a0e8e08866cfb1f5 (patch) | |
tree | de1237434696e0f094e2cfb35d7fd5880b8a72bb /tests/slider.js | |
parent | ed4f58c6d3c914baafaf07ab1d168e6c199b8693 (diff) | |
download | jquery-ui-7ea535fa1df43e8259ab9987a0e8e08866cfb1f5.tar.gz jquery-ui-7ea535fa1df43e8259ab9987a0e8e08866cfb1f5.zip |
fixed #3578 - ALL CODE: e, ui should be changed to event, ui
Diffstat (limited to 'tests/slider.js')
-rw-r--r-- | tests/slider.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/slider.js b/tests/slider.js index 3fbdd8b74..fa20f0339 100644 --- a/tests/slider.js +++ b/tests/slider.js @@ -41,7 +41,7 @@ function assertChange(stepping, start, result, action) { startValue: start, min: 0, max: 1000, - change: function(e, ui) { + change: function(event, ui) { equals(ui.value, result, "changed to " + ui.value); } }); |