corrade-http-templates

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 61  →  ?path2? @ 62
/instantMessage/node_modules/jquery-ui/tests/unit/resizable/helper.js
@@ -0,0 +1,20 @@
define( [
"qunit",
"jquery",
"lib/helper"
], function( QUnit, $, 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
} );
}
} );
 
} );