mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
bde431bb44
Ref gh-1528
19 lines
373 B
JavaScript
19 lines
373 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
|
|
});
|
|
}
|
|
} );
|
|
|
|
} );
|