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/sortable.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/sortable.js')
-rw-r--r-- | tests/sortable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sortable.js b/tests/sortable.js index 2dd720e18..64b0b6833 100644 --- a/tests/sortable.js +++ b/tests/sortable.js @@ -135,7 +135,7 @@ test("defaults", function() { test("#3019: Stop fires too early", function() { var helper = null; - el = $("#sortable").sortable({ stop: function(e, ui) { + el = $("#sortable").sortable({ stop: function(event, ui) { helper = ui.helper; }}); |