aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/resizable/helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/resizable/helper.js')
-rw-r--r--tests/unit/resizable/helper.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/resizable/helper.js b/tests/unit/resizable/helper.js
index 494c1a073..f541d69c7 100644
--- a/tests/unit/resizable/helper.js
+++ b/tests/unit/resizable/helper.js
@@ -5,13 +5,14 @@ define( [
return $.extend( helper, {
drag: function( el, dx, dy ) {
+
// this mouseover is to work around a limitation in resizable
// TODO: fix resizable so handle doesn't require mouseover in order to be used
- $( el ).simulate("mouseover").simulate( "drag", {
+ $( el ).simulate( "mouseover" ).simulate( "drag", {
moves: 2,
dx: dx,
dy: dy
- });
+ } );
}
} );