aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/dialog/dialog_events.js
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2009-09-14 14:54:15 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2009-09-14 14:54:15 +0000
commit219c81a20800ba9dc7b6515299d2ad2fba626d8b (patch)
tree80b6305561cfb8406a92c435db95f396c1ceb24c /tests/unit/dialog/dialog_events.js
parentfde0b18eea4bafd8e398a5ef4a58aadc818cae10 (diff)
downloadjquery-ui-219c81a20800ba9dc7b6515299d2ad2fba626d8b.tar.gz
jquery-ui-219c81a20800ba9dc7b6515299d2ad2fba626d8b.zip
dialog: fixed dragStop test (was using dragStart instead of dragStop, copy&paste FTF)
Diffstat (limited to 'tests/unit/dialog/dialog_events.js')
-rw-r--r--tests/unit/dialog/dialog_events.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/dialog/dialog_events.js b/tests/unit/dialog/dialog_events.js
index 70bf434b7..c60e47f22 100644
--- a/tests/unit/dialog/dialog_events.js
+++ b/tests/unit/dialog/dialog_events.js
@@ -86,7 +86,7 @@ test("dragStop", function() {
expect(7);
el = $('<div></div>').dialog({
- dragStart: function(ev, ui) {
+ dragStop: function(ev, ui) {
ok(true, 'dragging fires dragStop callback');
equals(this, el[0], "context of callback");
equals(ev.type, 'dialogdragstop', 'event type in callback');