mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
4e7407cd69
Ref #10119 Ref gh-1528
16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
define( function() {
|
|
|
|
return {
|
|
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
|
|
});
|
|
}
|
|
};
|
|
|
|
} );
|