mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
5850a5c755
Ref #14246
20 lines
377 B
JavaScript
20 lines
377 B
JavaScript
define( [
|
|
"jquery",
|
|
"lib/helper"
|
|
], function( $, helper ) {
|
|
|
|
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", {
|
|
moves: 2,
|
|
dx: dx,
|
|
dy: dy
|
|
} );
|
|
}
|
|
} );
|
|
|
|
} );
|