diff --git a/cake/libs/view/helpers/ajax.php b/cake/libs/view/helpers/ajax.php index f1621d229..97d5c9580 100644 --- a/cake/libs/view/helpers/ajax.php +++ b/cake/libs/view/helpers/ajax.php @@ -82,7 +82,7 @@ class AjaxHelper extends AppHelper { var $dragOptions = array( 'handle', 'revert', 'snap', 'zindex', 'constraint', 'change', 'ghosting', 'starteffect', 'reverteffect', 'endeffect', 'scroll', 'scrollSensitivity', - 'onStart', 'onDrag', 'onDropped' , 'onEnd' + 'onStart', 'onDrag', 'onEnd' ); /** * Options for droppable. diff --git a/cake/tests/cases/libs/view/helpers/ajax.test.php b/cake/tests/cases/libs/view/helpers/ajax.test.php index ae024f455..28405e628 100644 --- a/cake/tests/cases/libs/view/helpers/ajax.test.php +++ b/cake/tests/cases/libs/view/helpers/ajax.test.php @@ -303,7 +303,7 @@ class AjaxHelperTest extends CakeTestCase { $result = $this->Ajax->drag('id', array('onDrag' => 'doDrag', 'onDropped' => 'doDrop')); $this->assertPattern('/onDrag:doDrag/', $result); - $this->assertPattern('/onDropped:doDrop/', $result); + $this->assertPattern('/onEnd:doEnd/', $result); } /** * testDroppable method