diff options
Diffstat (limited to 'tests/unit/droppable')
-rw-r--r-- | tests/unit/droppable/droppable_common.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/unit/droppable/droppable_common.js b/tests/unit/droppable/droppable_common.js index d86afe3dd..c112def3c 100644 --- a/tests/unit/droppable/droppable_common.js +++ b/tests/unit/droppable/droppable_common.js @@ -3,11 +3,18 @@ TestHelpers.commonWidgetTests( "droppable", { accept: "*", activeClass: false, addClasses: true, - create: null, disabled: false, greedy: false, hoverClass: false, scope: "default", - tolerance: "intersect" + tolerance: "intersect", + + // callbacks + activate: null, + create: null, + deactivate: null, + drop: null, + out: null, + over: null } }); |