2009-02-02 14:36:08 +00:00
|
|
|
/*
|
|
|
|
* selectable_events.js
|
|
|
|
*/
|
2012-12-09 02:27:37 +00:00
|
|
|
(function( $ ) {
|
2009-02-02 14:36:08 +00:00
|
|
|
|
|
|
|
module("selectable: events");
|
|
|
|
|
2012-12-09 02:27:37 +00:00
|
|
|
test( "start", function() {
|
|
|
|
expect( 2 );
|
2012-10-31 01:50:08 +00:00
|
|
|
var el = $("#selectable1");
|
2009-02-04 04:53:09 +00:00
|
|
|
el.selectable({
|
2012-10-23 14:36:42 +00:00
|
|
|
start: function() {
|
2012-12-09 02:27:37 +00:00
|
|
|
ok( true, "drag fired start callback" );
|
|
|
|
equal( this, el[0], "context of callback" );
|
2009-02-04 04:53:09 +00:00
|
|
|
}
|
|
|
|
});
|
2012-12-09 02:27:37 +00:00
|
|
|
el.simulate( "drag", {
|
|
|
|
dx: 20,
|
|
|
|
dy: 20
|
|
|
|
});
|
2009-02-04 04:53:09 +00:00
|
|
|
});
|
|
|
|
|
2012-12-09 02:27:37 +00:00
|
|
|
test( "stop", function() {
|
|
|
|
expect( 2 );
|
2012-10-31 01:50:08 +00:00
|
|
|
var el = $("#selectable1");
|
2009-02-04 04:53:09 +00:00
|
|
|
el.selectable({
|
2012-10-23 14:36:42 +00:00
|
|
|
start: function() {
|
2012-12-09 02:27:37 +00:00
|
|
|
ok( true, "drag fired stop callback" );
|
|
|
|
equal( this, el[0], "context of callback" );
|
2009-02-04 04:53:09 +00:00
|
|
|
}
|
|
|
|
});
|
2012-12-09 02:27:37 +00:00
|
|
|
el.simulate( "drag", {
|
|
|
|
dx: 20,
|
|
|
|
dy: 20
|
|
|
|
});
|
2009-02-02 14:36:08 +00:00
|
|
|
});
|
|
|
|
|
2012-12-29 03:17:50 +00:00
|
|
|
test( "mousedown: initial position of helper", function() {
|
|
|
|
expect( 2 );
|
|
|
|
|
|
|
|
var contentToForceScroll, helper,
|
|
|
|
element = $("#selectable1").selectable();
|
|
|
|
|
|
|
|
contentToForceScroll = $("<div>").css({
|
|
|
|
height: "10000px",
|
|
|
|
width: "10000px"
|
|
|
|
});
|
|
|
|
|
|
|
|
contentToForceScroll.appendTo("body");
|
|
|
|
$( window ).scrollTop( 1 ).scrollLeft( 1 );
|
|
|
|
element.simulate( "mousedown", {
|
|
|
|
clientX: 10,
|
|
|
|
clientY: 10
|
|
|
|
});
|
|
|
|
|
|
|
|
helper = $(".ui-selectable-helper");
|
|
|
|
equal( helper.css("top"), "11px", "Scroll top should be accounted for." );
|
|
|
|
equal( helper.css("left"), "11px", "Scroll left should be accounted for." );
|
|
|
|
|
|
|
|
// Cleanup
|
|
|
|
element.simulate("mouseup");
|
|
|
|
contentToForceScroll.remove();
|
|
|
|
$( window ).scrollTop( 0 ).scrollLeft( 0 );
|
|
|
|
});
|
|
|
|
|
2012-12-09 02:27:37 +00:00
|
|
|
})( jQuery );
|