mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
parent
0cab9f0a2f
commit
8336ba7b69
@ -43,6 +43,6 @@ common.testWidget( "draggable", {
|
||||
start: null,
|
||||
stop: null
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
} );
|
||||
|
@ -14,84 +14,84 @@ test( "element types", function( assert ) {
|
||||
",table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr" +
|
||||
",acronym,code,samp,kbd,var,img,hr" +
|
||||
",input,button,label,select,iframe"
|
||||
).split(",");
|
||||
).split( "," );
|
||||
|
||||
expect( typeNames.length * 2 );
|
||||
|
||||
$.each( typeNames, function( i ) {
|
||||
var offsetBefore, offsetAfter,
|
||||
typeName = typeNames[ i ],
|
||||
el = $( document.createElement( typeName ) ).appendTo("#qunit-fixture");
|
||||
el = $( document.createElement( typeName ) ).appendTo( "#qunit-fixture" );
|
||||
|
||||
if ( typeName === "table" ) {
|
||||
el.append("<tr><td>content</td></tr>");
|
||||
el.append( "<tr><td>content</td></tr>" );
|
||||
}
|
||||
|
||||
el.draggable({ cancel: "" });
|
||||
el.draggable( { cancel: "" } );
|
||||
offsetBefore = el.offset();
|
||||
el.simulate( "drag", {
|
||||
dx: 50,
|
||||
dy: 50
|
||||
});
|
||||
} );
|
||||
offsetAfter = el.offset();
|
||||
|
||||
// Support: FF, Chrome, and IE9,
|
||||
// there are some rounding errors in so we can't say equal, we have to settle for close enough
|
||||
assert.close( offsetBefore.left, offsetAfter.left - 50, 1, "dragged[50, 50] " + "<" + typeName + "> left" );
|
||||
assert.close( offsetBefore.top, offsetAfter.top - 50, 1, "dragged[50, 50] " + "<" + typeName + "> top" );
|
||||
el.draggable("destroy");
|
||||
el.draggable( "destroy" );
|
||||
el.remove();
|
||||
});
|
||||
});
|
||||
} );
|
||||
} );
|
||||
|
||||
test( "No options, relative", function() {
|
||||
expect( 2 );
|
||||
testHelper.shouldMove( $( "#draggable1" ).draggable(), "no options, relative" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "No options, absolute", function() {
|
||||
expect( 2 );
|
||||
testHelper.shouldMove( $( "#draggable2" ).draggable(), "no options, absolute" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "resizable handle with complex markup (#8756 / #8757)", function() {
|
||||
expect( 2 );
|
||||
|
||||
$( "#draggable1" )
|
||||
.append(
|
||||
$("<div>")
|
||||
.addClass("ui-resizable-handle ui-resizable-w")
|
||||
.append( $("<div>") )
|
||||
$( "<div>" )
|
||||
.addClass( "ui-resizable-handle ui-resizable-w" )
|
||||
.append( $( "<div>" ) )
|
||||
);
|
||||
|
||||
var handle = $(".ui-resizable-w div"),
|
||||
target = $( "#draggable1" ).draggable().resizable({ handles: "all" });
|
||||
var handle = $( ".ui-resizable-w div" ),
|
||||
target = $( "#draggable1" ).draggable().resizable( { handles: "all" } );
|
||||
|
||||
// Todo: fix resizable so it doesn't require a mouseover
|
||||
handle.simulate("mouseover").simulate( "drag", { dx: -50 } );
|
||||
handle.simulate( "mouseover" ).simulate( "drag", { dx: -50 } );
|
||||
equal( target.width(), 250, "compare width" );
|
||||
|
||||
// Todo: fix resizable so it doesn't require a mouseover
|
||||
handle.simulate("mouseover").simulate( "drag", { dx: 50 } );
|
||||
handle.simulate( "mouseover" ).simulate( "drag", { dx: 50 } );
|
||||
equal( target.width(), 200, "compare width" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "#8269: Removing draggable element on drop", function() {
|
||||
expect( 2 );
|
||||
|
||||
var element = $( "#draggable1" ).wrap( "<div id='wrapper' />" ).draggable({
|
||||
var element = $( "#draggable1" ).wrap( "<div id='wrapper' />" ).draggable( {
|
||||
stop: function() {
|
||||
ok( true, "stop still called despite element being removed from DOM on drop" );
|
||||
}
|
||||
}),
|
||||
} ),
|
||||
dropOffset = $( "#droppable" ).offset();
|
||||
|
||||
$( "#droppable" ).droppable({
|
||||
$( "#droppable" ).droppable( {
|
||||
drop: function() {
|
||||
$( "#wrapper" ).remove();
|
||||
ok( true, "element removed from DOM on drop" );
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
// Support: Opera 12.10, Safari 5.1, jQuery <1.8
|
||||
if ( testHelper.unreliableContains ) {
|
||||
@ -102,31 +102,31 @@ test( "#8269: Removing draggable element on drop", function() {
|
||||
handle: "corner",
|
||||
x: dropOffset.left,
|
||||
y: dropOffset.top
|
||||
});
|
||||
} );
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
// http://bugs.jqueryui.com/ticket/7778
|
||||
// drag element breaks in IE8 when its content is replaced onmousedown
|
||||
test( "Stray mousemove after mousedown still drags", function() {
|
||||
expect( 2 );
|
||||
|
||||
var element = $( "#draggable1" ).draggable({ scroll: false });
|
||||
var element = $( "#draggable1" ).draggable( { scroll: false } );
|
||||
|
||||
// In IE8, when content is placed under the mouse (e.g. when draggable content is replaced
|
||||
// on mousedown), mousemove is triggered on those elements even though the mouse hasn't moved.
|
||||
// Support: IE <9
|
||||
element.on( "mousedown", function() {
|
||||
$( document ).simulate( "mousemove", { button: -1 });
|
||||
});
|
||||
$( document ).simulate( "mousemove", { button: -1 } );
|
||||
} );
|
||||
|
||||
testHelper.shouldMove( element, "element is draggable" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "#6258: not following mouse when scrolled and using overflow-y: scroll", function() {
|
||||
expect( 2 );
|
||||
|
||||
var element = $( "#draggable1" ).draggable({
|
||||
var element = $( "#draggable1" ).draggable( {
|
||||
stop: function( event, ui ) {
|
||||
equal( ui.position.left, 1, "left position is correct despite overflow on HTML" );
|
||||
equal( ui.position.top, 1, "top position is correct despite overflow on HTML" );
|
||||
@ -136,7 +136,7 @@ test( "#6258: not following mouse when scrolled and using overflow-y: scroll", f
|
||||
.scrollTop( 0 )
|
||||
.scrollLeft( 0 );
|
||||
}
|
||||
}),
|
||||
} ),
|
||||
oldOverflowY = $( "html" ).css( "overflow-y" ),
|
||||
oldOverflowX = $( "html" ).css( "overflow-x" );
|
||||
|
||||
@ -152,19 +152,19 @@ test( "#6258: not following mouse when scrolled and using overflow-y: scroll", f
|
||||
dx: 1,
|
||||
dy: 1,
|
||||
moves: 1
|
||||
});
|
||||
});
|
||||
} );
|
||||
} );
|
||||
|
||||
test( "#9315: jumps down with offset of scrollbar", function() {
|
||||
expect( 2 );
|
||||
|
||||
var element = $( "#draggable2" ).draggable({
|
||||
var element = $( "#draggable2" ).draggable( {
|
||||
stop: function( event, ui ) {
|
||||
equal( ui.position.left, 11, "left position is correct when position is absolute" );
|
||||
equal( ui.position.top, 11, "top position is correct when position is absolute" );
|
||||
$( "html" ).scrollTop( 0 ).scrollLeft( 0 );
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
testHelper.forceScrollableWindow();
|
||||
|
||||
@ -174,21 +174,23 @@ test( "#9315: jumps down with offset of scrollbar", function() {
|
||||
dx: 1,
|
||||
dy: 1,
|
||||
moves: 1
|
||||
});
|
||||
});
|
||||
} );
|
||||
} );
|
||||
|
||||
test( "scroll offset with fixed ancestors", function() {
|
||||
expect( 2 );
|
||||
|
||||
var startValue = 300,
|
||||
element = $( "#draggable1" )
|
||||
|
||||
// http://bugs.jqueryui.com/ticket/5009
|
||||
// scroll not working with parent's position fixed
|
||||
.wrap( "<div id='wrapper' />" )
|
||||
|
||||
// http://bugs.jqueryui.com/ticket/9612
|
||||
// abspos elements inside of fixed elements moving away from the mouse when scrolling
|
||||
.wrap( "<div id='wrapper2' />" )
|
||||
.draggable({
|
||||
.draggable( {
|
||||
drag: function() {
|
||||
startValue += 100;
|
||||
$( document ).scrollTop( startValue ).scrollLeft( startValue );
|
||||
@ -198,7 +200,7 @@ test( "scroll offset with fixed ancestors", function() {
|
||||
equal( ui.position.top, 10, "top position is correct when parent position is fixed" );
|
||||
$( document ).scrollTop( 0 ).scrollLeft( 0 );
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
testHelper.forceScrollableWindow();
|
||||
|
||||
@ -209,10 +211,10 @@ test( "scroll offset with fixed ancestors", function() {
|
||||
dx: 10,
|
||||
dy: 10,
|
||||
moves: 3
|
||||
});
|
||||
});
|
||||
} );
|
||||
} );
|
||||
|
||||
$( [ "hidden", "auto", "scroll" ] ).each(function() {
|
||||
$( [ "hidden", "auto", "scroll" ] ).each( function() {
|
||||
var overflow = this;
|
||||
|
||||
// Http://bugs.jqueryui.com/ticket/9379 - position bug in scrollable div
|
||||
@ -221,9 +223,9 @@ $( [ "hidden", "auto", "scroll" ] ).each(function() {
|
||||
expect( 2 );
|
||||
|
||||
$( "#qunit-fixture" ).html( "<div id='outer'><div id='inner'></div><div id='dragged'>a</div></div>" );
|
||||
$( "#inner" ).css({ position: "absolute", width: "500px", height: "500px" });
|
||||
$( "#outer" ).css({ position: "absolute", width: "300px", height: "300px" });
|
||||
$( "#dragged" ).css({ width: "10px", height: "10px" });
|
||||
$( "#inner" ).css( { position: "absolute", width: "500px", height: "500px" } );
|
||||
$( "#outer" ).css( { position: "absolute", width: "300px", height: "300px" } );
|
||||
$( "#dragged" ).css( { width: "10px", height: "10px" } );
|
||||
|
||||
var moves = 3,
|
||||
startValue = 0,
|
||||
@ -232,7 +234,7 @@ $( [ "hidden", "auto", "scroll" ] ).each(function() {
|
||||
|
||||
// We scroll after each drag event, so subtract 1 from number of moves for expected
|
||||
expected = delta + ( ( moves - 1 ) * dragDelta ),
|
||||
element = $( "#dragged" ).draggable({
|
||||
element = $( "#dragged" ).draggable( {
|
||||
drag: function() {
|
||||
startValue += dragDelta;
|
||||
$( "#outer" ).scrollTop( startValue ).scrollLeft( startValue );
|
||||
@ -241,7 +243,7 @@ $( [ "hidden", "auto", "scroll" ] ).each(function() {
|
||||
equal( ui.position.left, expected, "left position is correct when grandparent is scrolled" );
|
||||
equal( ui.position.top, expected, "top position is correct when grandparent is scrolled" );
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
$( "#outer" ).css( "overflow", overflow );
|
||||
|
||||
@ -249,9 +251,9 @@ $( [ "hidden", "auto", "scroll" ] ).each(function() {
|
||||
dy: delta,
|
||||
dx: delta,
|
||||
moves: moves
|
||||
});
|
||||
});
|
||||
});
|
||||
} );
|
||||
} );
|
||||
} );
|
||||
|
||||
test( "#5727: draggable from iframe", function() {
|
||||
expect( 1 );
|
||||
@ -273,7 +275,7 @@ test( "#5727: draggable from iframe", function() {
|
||||
// TODO: fix draggable within an IFRAME to fire events on the element properly
|
||||
// and these testHelper.shouldMove relies on events for testing
|
||||
//testHelper.shouldMove( draggable1, "draggable from an iframe" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "#8399: A draggable should become the active element after you are finished interacting with it, but not before.", function() {
|
||||
expect( 2 );
|
||||
@ -282,12 +284,12 @@ test( "#8399: A draggable should become the active element after you are finishe
|
||||
|
||||
$( document ).one( "mousemove", function() {
|
||||
notStrictEqual( document.activeElement, element.get( 0 ), "moving a draggable anchor did not make it the active element" );
|
||||
});
|
||||
} );
|
||||
|
||||
testHelper.move( element, 50, 50 );
|
||||
|
||||
strictEqual( document.activeElement, element.get( 0 ), "finishing moving a draggable anchor made it the active element" );
|
||||
});
|
||||
} );
|
||||
|
||||
asyncTest( "blur behavior", function() {
|
||||
expect( 3 );
|
||||
@ -310,8 +312,8 @@ asyncTest( "blur behavior", function() {
|
||||
// active element should blur when mousing down on a draggable
|
||||
notStrictEqual( document.activeElement, focusElement.get( 0 ), "test element is no longer focused after mousing down on a draggable" );
|
||||
start();
|
||||
});
|
||||
});
|
||||
} );
|
||||
} );
|
||||
|
||||
test( "ui-draggable-handle assigned to appropriate element", function( assert ) {
|
||||
expect( 5 );
|
||||
@ -328,7 +330,7 @@ test( "ui-draggable-handle assigned to appropriate element", function( assert )
|
||||
|
||||
element.draggable( "destroy" );
|
||||
assert.lacksClasses( element.find( "p" ), "ui-draggable-handle" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "ui-draggable-handle managed correctly in nested draggables", function( assert ) {
|
||||
expect( 4 );
|
||||
@ -341,6 +343,6 @@ test( "ui-draggable-handle managed correctly in nested draggables", function( as
|
||||
parent.draggable( "destroy" );
|
||||
assert.lacksClasses( parent, "ui-draggable-handle", "parent loses class name on destroy" );
|
||||
assert.hasClasses( child, "ui-draggable-handle", "child retains class name on destroy" );
|
||||
});
|
||||
} );
|
||||
|
||||
} );
|
||||
|
@ -7,12 +7,12 @@ var element;
|
||||
|
||||
module( "draggable: events", {
|
||||
setup: function() {
|
||||
element = $("<div>").appendTo("#qunit-fixture");
|
||||
element = $( "<div>" ).appendTo( "#qunit-fixture" );
|
||||
},
|
||||
teardown: function() {
|
||||
element.draggable("destroy");
|
||||
element.draggable( "destroy" );
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
test( "callbacks occurrence count", function() {
|
||||
expect( 3 );
|
||||
@ -21,7 +21,7 @@ test( "callbacks occurrence count", function() {
|
||||
stop = 0,
|
||||
dragc = 0;
|
||||
|
||||
element.draggable({
|
||||
element.draggable( {
|
||||
start: function() {
|
||||
start++;
|
||||
},
|
||||
@ -31,17 +31,17 @@ test( "callbacks occurrence count", function() {
|
||||
stop: function() {
|
||||
stop++;
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
element.simulate( "drag", {
|
||||
dx: 10,
|
||||
dy: 10
|
||||
});
|
||||
} );
|
||||
|
||||
equal( start, 1, "start callback should happen exactly once" );
|
||||
equal( dragc, 3, "drag callback should happen exactly once per mousemove" );
|
||||
equal( stop, 1, "stop callback should happen exactly once" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "stopping the start callback", function() {
|
||||
expect( 3 );
|
||||
@ -50,7 +50,7 @@ test( "stopping the start callback", function() {
|
||||
stop = 0,
|
||||
dragc = 0;
|
||||
|
||||
element.draggable({
|
||||
element.draggable( {
|
||||
start: function() {
|
||||
start++;
|
||||
return false;
|
||||
@ -61,17 +61,17 @@ test( "stopping the start callback", function() {
|
||||
stop: function() {
|
||||
stop++;
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
element.simulate( "drag", {
|
||||
dx: 10,
|
||||
dy: 10
|
||||
});
|
||||
} );
|
||||
|
||||
equal( start, 1, "start callback should happen exactly once" );
|
||||
equal( dragc, 0, "drag callback should not happen at all" );
|
||||
equal( stop, 0, "stop callback should not happen if there wasnt even a start" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "stopping the drag callback", function() {
|
||||
expect( 2 );
|
||||
@ -80,7 +80,7 @@ test( "stopping the drag callback", function() {
|
||||
stop = 0,
|
||||
dragc = 0;
|
||||
|
||||
element.draggable({
|
||||
element.draggable( {
|
||||
start: function() {
|
||||
start++;
|
||||
},
|
||||
@ -91,34 +91,34 @@ test( "stopping the drag callback", function() {
|
||||
stop: function() {
|
||||
stop++;
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
element.simulate( "drag", {
|
||||
dx: 10,
|
||||
dy: 10
|
||||
});
|
||||
} );
|
||||
|
||||
equal( start, 1, "start callback should happen exactly once" );
|
||||
equal( stop, 1, "stop callback should happen, as we need to actively stop the drag" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "stopping the stop callback", function() {
|
||||
expect( 1 );
|
||||
|
||||
element.draggable({
|
||||
element.draggable( {
|
||||
helper: "clone",
|
||||
stop: function() {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
element.simulate( "drag", {
|
||||
dx: 10,
|
||||
dy: 10
|
||||
});
|
||||
} );
|
||||
|
||||
ok( element.draggable( "instance" ).helper, "the clone should not be deleted if the stop callback is stopped" );
|
||||
});
|
||||
} );
|
||||
|
||||
// http://bugs.jqueryui.com/ticket/6884
|
||||
// Draggable: ui.offset.left differs between the "start" and "drag" hooks
|
||||
@ -129,7 +129,7 @@ test( "position and offset in hash is consistent between start, drag, and stop",
|
||||
|
||||
element = $( "<div style='margin: 2px;'></div>" ).appendTo( "#qunit-fixture" );
|
||||
|
||||
element.draggable({
|
||||
element.draggable( {
|
||||
start: function( event, ui ) {
|
||||
startPos = ui.position;
|
||||
startOffset = ui.offset;
|
||||
@ -142,13 +142,13 @@ test( "position and offset in hash is consistent between start, drag, and stop",
|
||||
stopPos = ui.position;
|
||||
stopOffset = ui.offset;
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
element.simulate( "drag", {
|
||||
dx: 10,
|
||||
dy: 10,
|
||||
moves: 1
|
||||
});
|
||||
} );
|
||||
|
||||
startPos.left += 10;
|
||||
startPos.top += 10;
|
||||
@ -159,6 +159,6 @@ test( "position and offset in hash is consistent between start, drag, and stop",
|
||||
deepEqual( dragPos, stopPos, "drag position equals stop position" );
|
||||
deepEqual( startOffset, dragOffset, "start offset equals drag offset plus distance" );
|
||||
deepEqual( dragOffset, stopOffset, "drag offset equals stop offset" );
|
||||
});
|
||||
} );
|
||||
|
||||
} );
|
||||
|
@ -8,12 +8,13 @@ return $.extend( helper, {
|
||||
|
||||
// TODO: remove the unreliable offset hacks
|
||||
unreliableOffset: $.ui.ie && ( !document.documentMode || document.documentMode < 8 ) ? 2 : 0,
|
||||
|
||||
// Support: Opera 12.10, Safari 5.1, jQuery <1.8
|
||||
|
||||
unreliableContains: (function() {
|
||||
unreliableContains: ( function() {
|
||||
var element = $( "<div>" );
|
||||
return $.contains( element[ 0 ].ownerDocument, element[ 0 ] );
|
||||
})(),
|
||||
} )(),
|
||||
|
||||
testDragPosition: function( el, dx, dy, expectedDX, expectedDY, msg ) {
|
||||
msg = msg ? msg + "." : "";
|
||||
@ -21,7 +22,7 @@ return $.extend( helper, {
|
||||
$( el ).one( "dragstop", function( event, ui ) {
|
||||
var positionExpected = { left: ui.originalPosition.left + expectedDX, top: ui.originalPosition.top + expectedDY };
|
||||
deepEqual( ui.position, positionExpected, "position dragged[" + dx + ", " + dy + "] " + msg );
|
||||
});
|
||||
} );
|
||||
},
|
||||
|
||||
testDragOffset: function( el, dx, dy, expectedDX, expectedDY, msg ) {
|
||||
@ -32,7 +33,7 @@ return $.extend( helper, {
|
||||
|
||||
$( el ).one( "dragstop", function( event, ui ) {
|
||||
deepEqual( ui.offset, offsetExpected, "offset dragged[" + dx + ", " + dy + "] " + msg );
|
||||
});
|
||||
} );
|
||||
},
|
||||
|
||||
testDragHelperOffset: function( el, dx, dy, expectedDX, expectedDY, msg ) {
|
||||
@ -43,7 +44,7 @@ return $.extend( helper, {
|
||||
|
||||
$( el ).one( "dragstop", function( event, ui ) {
|
||||
deepEqual( ui.helper.offset(), offsetExpected, "offset dragged[" + dx + ", " + dy + "] " + msg );
|
||||
});
|
||||
} );
|
||||
},
|
||||
|
||||
testDrag: function( el, handle, dx, dy, expectedDX, expectedDY, msg ) {
|
||||
@ -53,7 +54,7 @@ return $.extend( helper, {
|
||||
$( handle ).simulate( "drag", {
|
||||
dx: dx,
|
||||
dy: dy
|
||||
});
|
||||
} );
|
||||
},
|
||||
|
||||
shouldMovePositionButNotOffset: function( el, msg, handle ) {
|
||||
@ -64,7 +65,7 @@ return $.extend( helper, {
|
||||
$( handle ).simulate( "drag", {
|
||||
dx: 100,
|
||||
dy: 100
|
||||
});
|
||||
} );
|
||||
},
|
||||
|
||||
shouldMove: function( el, msg, handle ) {
|
||||
@ -86,12 +87,12 @@ return $.extend( helper, {
|
||||
|
||||
element.on( "dragstop", function() {
|
||||
ok( false, "should not drag " + msg );
|
||||
});
|
||||
} );
|
||||
|
||||
$( handle ).simulate( "drag", {
|
||||
dx: 100,
|
||||
dy: 100
|
||||
});
|
||||
} );
|
||||
|
||||
newOffset = element.offset();
|
||||
|
||||
@ -105,12 +106,12 @@ return $.extend( helper, {
|
||||
|
||||
setScrollable: function( what, isScrollable ) {
|
||||
var overflow = isScrollable ? "scroll" : "hidden";
|
||||
$( what ).css({ overflow: overflow, overflowX: overflow, overflowY: overflow });
|
||||
$( what ).css( { overflow: overflow, overflowX: overflow, overflowY: overflow } );
|
||||
},
|
||||
|
||||
testScroll: function( el, position ) {
|
||||
var oldPosition = $( "#main" ).css( "position" );
|
||||
$( "#main" ).css({ position: position, top: "0px", left: "0px" });
|
||||
$( "#main" ).css( { position: position, top: "0px", left: "0px" } );
|
||||
this.shouldMove( el, position + " parent" );
|
||||
$( "#main" ).css( "position", oldPosition );
|
||||
},
|
||||
@ -135,23 +136,24 @@ return $.extend( helper, {
|
||||
$( el ).simulate( "drag", {
|
||||
dx: x,
|
||||
dy: y
|
||||
});
|
||||
} );
|
||||
},
|
||||
|
||||
trackMouseCss: function( el ) {
|
||||
el.on( "drag", function() {
|
||||
el.data( "last_dragged_cursor", $( "body" ).css( "cursor" ) );
|
||||
});
|
||||
} );
|
||||
},
|
||||
|
||||
trackAppendedParent: function( el ) {
|
||||
|
||||
// TODO: appendTo is currently ignored if helper is original (see #7044)
|
||||
el.draggable( "option", "helper", "clone" );
|
||||
|
||||
// Get what parent is at time of drag
|
||||
el.on( "drag", function(e, ui) {
|
||||
el.on( "drag", function( e, ui ) {
|
||||
el.data( "last_dragged_parent", ui.helper.parent()[ 0 ] );
|
||||
});
|
||||
} );
|
||||
}
|
||||
} );
|
||||
|
||||
|
@ -8,12 +8,12 @@ var element;
|
||||
|
||||
module( "draggable: methods", {
|
||||
setup: function() {
|
||||
element = $("<div style='background: green; width: 200px; height: 100px; position: absolute; top: 10px; left: 10px;'><span>Absolute</span></div>").appendTo("#qunit-fixture");
|
||||
element = $( "<div style='background: green; width: 200px; height: 100px; position: absolute; top: 10px; left: 10px;'><span>Absolute</span></div>" ).appendTo( "#qunit-fixture" );
|
||||
},
|
||||
teardown: function() {
|
||||
element.remove();
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
test( "init", function() {
|
||||
expect( 5 );
|
||||
@ -21,10 +21,10 @@ test( "init", function() {
|
||||
element.draggable();
|
||||
ok( true, ".draggable() called on element" );
|
||||
|
||||
$([]).draggable();
|
||||
$( [] ).draggable();
|
||||
ok( true, ".draggable() called on empty collection" );
|
||||
|
||||
$("<div></div>").draggable();
|
||||
$( "<div></div>" ).draggable();
|
||||
ok( true, ".draggable() called on disconnected DOMElement" );
|
||||
|
||||
element.draggable( "option", "foo" );
|
||||
@ -32,52 +32,52 @@ test( "init", function() {
|
||||
|
||||
element.draggable( "option", "foo", "bar" );
|
||||
ok( true, "arbitrary option setter after init" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "destroy", function() {
|
||||
expect( 4 );
|
||||
|
||||
element.draggable().draggable("destroy");
|
||||
element.draggable().draggable( "destroy" );
|
||||
ok( true, ".draggable('destroy') called on element" );
|
||||
|
||||
$([]).draggable().draggable("destroy");
|
||||
$( [] ).draggable().draggable( "destroy" );
|
||||
ok( true, ".draggable('destroy') called on empty collection" );
|
||||
|
||||
element.draggable().draggable("destroy");
|
||||
element.draggable().draggable( "destroy" );
|
||||
ok( true, ".draggable('destroy') called on disconnected DOMElement" );
|
||||
|
||||
var expected = element.draggable(),
|
||||
actual = expected.draggable("destroy");
|
||||
actual = expected.draggable( "destroy" );
|
||||
equal( actual, expected, "destroy is chainable" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "enable", function() {
|
||||
expect( 11 );
|
||||
|
||||
element.draggable({ disabled: true });
|
||||
element.draggable( { disabled: true } );
|
||||
testHelper.shouldNotDrag( element, ".draggable({ disabled: true })" );
|
||||
|
||||
element.draggable("enable");
|
||||
element.draggable( "enable" );
|
||||
testHelper.shouldMove( element, ".draggable('enable')" );
|
||||
equal( element.draggable( "option", "disabled" ), false, "disabled option getter" );
|
||||
|
||||
element.draggable("destroy");
|
||||
element.draggable({ disabled: true });
|
||||
element.draggable( "destroy" );
|
||||
element.draggable( { disabled: true } );
|
||||
testHelper.shouldNotDrag( element, ".draggable({ disabled: true })" );
|
||||
|
||||
element.draggable( "option", "disabled", false );
|
||||
equal(element.draggable( "option", "disabled" ), false, "disabled option setter" );
|
||||
equal( element.draggable( "option", "disabled" ), false, "disabled option setter" );
|
||||
testHelper.shouldMove( element, ".draggable('option', 'disabled', false)" );
|
||||
|
||||
var expected = element.draggable(),
|
||||
actual = expected.draggable("enable");
|
||||
actual = expected.draggable( "enable" );
|
||||
equal( actual, expected, "enable is chainable" );
|
||||
});
|
||||
} );
|
||||
|
||||
test( "disable", function( assert ) {
|
||||
expect( 14 );
|
||||
|
||||
element = $( "#draggable2" ).draggable({ disabled: false });
|
||||
element = $( "#draggable2" ).draggable( { disabled: false } );
|
||||
testHelper.shouldMove( element, ".draggable({ disabled: false })" );
|
||||
|
||||
element.draggable( "disable" );
|
||||
@ -85,7 +85,7 @@ test( "disable", function( assert ) {
|
||||
equal( element.draggable( "option", "disabled" ), true, "disabled option getter" );
|
||||
|
||||
element.draggable( "destroy" );
|
||||
element.draggable({ disabled: false });
|
||||
element.draggable( { disabled: false } );
|
||||
testHelper.shouldMove( element, ".draggable({ disabled: false })" );
|
||||
|
||||
element.draggable( "option", "disabled", true );
|
||||
@ -99,6 +99,6 @@ test( "disable", function( assert ) {
|
||||
var expected = element.draggable(),
|
||||
actual = expected.draggable( "disable" );
|
||||
equal( actual, expected, "disable is chainable" );
|
||||
});
|
||||
} );
|
||||
|
||||
} );
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -14,11 +14,11 @@
|
||||
//>>demos: http://jqueryui.com/draggable/
|
||||
//>>css.structure: ../themes/base/draggable.css
|
||||
|
||||
(function( factory ) {
|
||||
( function( factory ) {
|
||||
if ( typeof define === "function" && define.amd ) {
|
||||
|
||||
// AMD. Register as an anonymous module.
|
||||
define([
|
||||
define( [
|
||||
"jquery",
|
||||
"./mouse",
|
||||
"../data",
|
||||
@ -34,9 +34,9 @@
|
||||
// Browser globals
|
||||
factory( jQuery );
|
||||
}
|
||||
}(function( $ ) {
|
||||
}( function( $ ) {
|
||||
|
||||
$.widget("ui.draggable", $.ui.mouse, {
|
||||
$.widget( "ui.draggable", $.ui.mouse, {
|
||||
version: "@VERSION",
|
||||
widgetEventPrefix: "drag",
|
||||
options: {
|
||||
@ -75,10 +75,10 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
if ( this.options.helper === "original" ) {
|
||||
this._setPositionRelative();
|
||||
}
|
||||
if (this.options.addClasses){
|
||||
if ( this.options.addClasses ) {
|
||||
this._addClass( "ui-draggable" );
|
||||
}
|
||||
if (this.options.disabled){
|
||||
if ( this.options.disabled ) {
|
||||
this._addClass( "ui-draggable-disabled" );
|
||||
}
|
||||
this._setHandleClassName();
|
||||
@ -103,19 +103,19 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
this._mouseDestroy();
|
||||
},
|
||||
|
||||
_mouseCapture: function(event) {
|
||||
_mouseCapture: function( event ) {
|
||||
var o = this.options;
|
||||
|
||||
this._blurActiveElement( event );
|
||||
|
||||
// Among others, prevent a drag on a resizable-handle
|
||||
if (this.helper || o.disabled || $(event.target).closest(".ui-resizable-handle").length > 0) {
|
||||
if ( this.helper || o.disabled || $( event.target ).closest( ".ui-resizable-handle" ).length > 0 ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
//Quit if we're not on a valid handle
|
||||
this.handle = this._getHandle(event);
|
||||
if (!this.handle) {
|
||||
this.handle = this._getHandle( event );
|
||||
if ( !this.handle ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -126,7 +126,7 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
},
|
||||
|
||||
_blockFrames: function( selector ) {
|
||||
this.iframeBlocks = this.document.find( selector ).map(function() {
|
||||
this.iframeBlocks = this.document.find( selector ).map( function() {
|
||||
var iframe = $( this );
|
||||
|
||||
return $( "<div>" )
|
||||
@ -135,7 +135,7 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
.outerWidth( iframe.outerWidth() )
|
||||
.outerHeight( iframe.outerHeight() )
|
||||
.offset( iframe.offset() )[ 0 ];
|
||||
});
|
||||
} );
|
||||
},
|
||||
|
||||
_unblockFrames: function() {
|
||||
@ -156,12 +156,12 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
$.ui.safeBlur( $.ui.safeActiveElement( this.document[ 0 ] ) );
|
||||
},
|
||||
|
||||
_mouseStart: function(event) {
|
||||
_mouseStart: function( event ) {
|
||||
|
||||
var o = this.options;
|
||||
|
||||
//Create and append the visible helper
|
||||
this.helper = this._createHelper(event);
|
||||
this.helper = this._createHelper( event );
|
||||
|
||||
this._addClass( this.helper, "ui-draggable-dragging" );
|
||||
|
||||
@ -169,7 +169,7 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
this._cacheHelperProportions();
|
||||
|
||||
//If ddmanager is used for droppables, set the global draggable
|
||||
if ($.ui.ddmanager) {
|
||||
if ( $.ui.ddmanager ) {
|
||||
$.ui.ddmanager.current = this;
|
||||
}
|
||||
|
||||
@ -185,9 +185,9 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
this.cssPosition = this.helper.css( "position" );
|
||||
this.scrollParent = this.helper.scrollParent( true );
|
||||
this.offsetParent = this.helper.offsetParent();
|
||||
this.hasFixedAncestor = this.helper.parents().filter(function() {
|
||||
this.hasFixedAncestor = this.helper.parents().filter( function() {
|
||||
return $( this ).css( "position" ) === "fixed";
|
||||
}).length > 0;
|
||||
} ).length > 0;
|
||||
|
||||
//The element's absolute position on the page minus margins
|
||||
this.positionAbs = this.element.offset();
|
||||
@ -199,13 +199,13 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
this.originalPageY = event.pageY;
|
||||
|
||||
//Adjust the mouse offset relative to the helper if "cursorAt" is supplied
|
||||
(o.cursorAt && this._adjustOffsetFromHelper(o.cursorAt));
|
||||
( o.cursorAt && this._adjustOffsetFromHelper( o.cursorAt ) );
|
||||
|
||||
//Set a containment if given in the options
|
||||
this._setContainment();
|
||||
|
||||
//Trigger event + callbacks
|
||||
if (this._trigger("start", event) === false) {
|
||||
if ( this._trigger( "start", event ) === false ) {
|
||||
this._clear();
|
||||
return false;
|
||||
}
|
||||
@ -214,15 +214,15 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
this._cacheHelperProportions();
|
||||
|
||||
//Prepare the droppable offsets
|
||||
if ($.ui.ddmanager && !o.dropBehaviour) {
|
||||
$.ui.ddmanager.prepareOffsets(this, event);
|
||||
if ( $.ui.ddmanager && !o.dropBehaviour ) {
|
||||
$.ui.ddmanager.prepareOffsets( this, event );
|
||||
}
|
||||
|
||||
this._mouseDrag(event, true); //Execute the drag once - this causes the helper not to be visible before getting its correct position
|
||||
this._mouseDrag( event, true ); //Execute the drag once - this causes the helper not to be visible before getting its correct position
|
||||
|
||||
//If the ddmanager is used for droppables, inform the manager that dragging has started (see #5003)
|
||||
if ( $.ui.ddmanager ) {
|
||||
$.ui.ddmanager.dragStart(this, event);
|
||||
$.ui.ddmanager.dragStart( this, event );
|
||||
}
|
||||
|
||||
return true;
|
||||
@ -243,7 +243,8 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
};
|
||||
},
|
||||
|
||||
_mouseDrag: function(event, noPropagation) {
|
||||
_mouseDrag: function( event, noPropagation ) {
|
||||
|
||||
// reset any necessary cached properties (see #5009)
|
||||
if ( this.hasFixedAncestor ) {
|
||||
this.offset.parent = this._getParentOffset();
|
||||
@ -251,13 +252,13 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
|
||||
//Compute the helpers position
|
||||
this.position = this._generatePosition( event, true );
|
||||
this.positionAbs = this._convertPositionTo("absolute");
|
||||
this.positionAbs = this._convertPositionTo( "absolute" );
|
||||
|
||||
//Call plugins and callbacks and use the resulting position if something is returned
|
||||
if (!noPropagation) {
|
||||
if ( !noPropagation ) {
|
||||
var ui = this._uiHash();
|
||||
if (this._trigger("drag", event, ui) === false) {
|
||||
this._mouseUp({});
|
||||
if ( this._trigger( "drag", event, ui ) === false ) {
|
||||
this._mouseUp( {} );
|
||||
return false;
|
||||
}
|
||||
this.position = ui.position;
|
||||
@ -266,36 +267,36 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
this.helper[ 0 ].style.left = this.position.left + "px";
|
||||
this.helper[ 0 ].style.top = this.position.top + "px";
|
||||
|
||||
if ($.ui.ddmanager) {
|
||||
$.ui.ddmanager.drag(this, event);
|
||||
if ( $.ui.ddmanager ) {
|
||||
$.ui.ddmanager.drag( this, event );
|
||||
}
|
||||
|
||||
return false;
|
||||
},
|
||||
|
||||
_mouseStop: function(event) {
|
||||
_mouseStop: function( event ) {
|
||||
|
||||
//If we are using droppables, inform the manager about the drop
|
||||
var that = this,
|
||||
dropped = false;
|
||||
if ($.ui.ddmanager && !this.options.dropBehaviour) {
|
||||
dropped = $.ui.ddmanager.drop(this, event);
|
||||
if ( $.ui.ddmanager && !this.options.dropBehaviour ) {
|
||||
dropped = $.ui.ddmanager.drop( this, event );
|
||||
}
|
||||
|
||||
//if a drop comes from outside (a sortable)
|
||||
if (this.dropped) {
|
||||
if ( this.dropped ) {
|
||||
dropped = this.dropped;
|
||||
this.dropped = false;
|
||||
}
|
||||
|
||||
if ((this.options.revert === "invalid" && !dropped) || (this.options.revert === "valid" && dropped) || this.options.revert === true || ($.isFunction(this.options.revert) && this.options.revert.call(this.element, dropped))) {
|
||||
$(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10), function() {
|
||||
if (that._trigger("stop", event) !== false) {
|
||||
if ( ( this.options.revert === "invalid" && !dropped ) || ( this.options.revert === "valid" && dropped ) || this.options.revert === true || ( $.isFunction( this.options.revert ) && this.options.revert.call( this.element, dropped ) ) ) {
|
||||
$( this.helper ).animate( this.originalPosition, parseInt( this.options.revertDuration, 10 ), function() {
|
||||
if ( that._trigger( "stop", event ) !== false ) {
|
||||
that._clear();
|
||||
}
|
||||
});
|
||||
} );
|
||||
} else {
|
||||
if (this._trigger("stop", event) !== false) {
|
||||
if ( this._trigger( "stop", event ) !== false ) {
|
||||
this._clear();
|
||||
}
|
||||
}
|
||||
@ -308,22 +309,23 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
|
||||
//If the ddmanager is used for droppables, inform the manager that dragging has stopped (see #5003)
|
||||
if ( $.ui.ddmanager ) {
|
||||
$.ui.ddmanager.dragStop(this, event);
|
||||
$.ui.ddmanager.dragStop( this, event );
|
||||
}
|
||||
|
||||
// Only need to focus if the event occurred on the draggable itself, see #10527
|
||||
if ( this.handleElement.is( event.target ) ) {
|
||||
|
||||
// The interaction is over; whether or not the click resulted in a drag, focus the element
|
||||
this.element.trigger( "focus" );
|
||||
}
|
||||
|
||||
return $.ui.mouse.prototype._mouseUp.call(this, event);
|
||||
return $.ui.mouse.prototype._mouseUp.call( this, event );
|
||||
},
|
||||
|
||||
cancel: function() {
|
||||
|
||||
if (this.helper.is(".ui-draggable-dragging")) {
|
||||
this._mouseUp({});
|
||||
if ( this.helper.is( ".ui-draggable-dragging" ) ) {
|
||||
this._mouseUp( {} );
|
||||
} else {
|
||||
this._clear();
|
||||
}
|
||||
@ -332,7 +334,7 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
|
||||
},
|
||||
|
||||
_getHandle: function(event) {
|
||||
_getHandle: function( event ) {
|
||||
return this.options.handle ?
|
||||
!!$( event.target ).closest( this.element.find( this.options.handle ) ).length :
|
||||
true;
|
||||
@ -348,7 +350,7 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
this._removeClass( this.handleElement, "ui-draggable-handle" );
|
||||
},
|
||||
|
||||
_createHelper: function(event) {
|
||||
_createHelper: function( event ) {
|
||||
|
||||
var o = this.options,
|
||||
helperIsFunction = $.isFunction( o.helper ),
|
||||
@ -358,8 +360,8 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
this.element.clone().removeAttr( "id" ) :
|
||||
this.element );
|
||||
|
||||
if (!helper.parents("body").length) {
|
||||
helper.appendTo((o.appendTo === "parent" ? this.element[0].parentNode : o.appendTo));
|
||||
if ( !helper.parents( "body" ).length ) {
|
||||
helper.appendTo( ( o.appendTo === "parent" ? this.element[ 0 ].parentNode : o.appendTo ) );
|
||||
}
|
||||
|
||||
// Http://bugs.jqueryui.com/ticket/9446
|
||||
@ -369,8 +371,8 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
this._setPositionRelative();
|
||||
}
|
||||
|
||||
if (helper[0] !== this.element[0] && !(/(fixed|absolute)/).test(helper.css("position"))) {
|
||||
helper.css("position", "absolute");
|
||||
if ( helper[ 0 ] !== this.element[ 0 ] && !( /(fixed|absolute)/ ).test( helper.css( "position" ) ) ) {
|
||||
helper.css( "position", "absolute" );
|
||||
}
|
||||
|
||||
return helper;
|
||||
@ -383,23 +385,23 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
}
|
||||
},
|
||||
|
||||
_adjustOffsetFromHelper: function(obj) {
|
||||
if (typeof obj === "string") {
|
||||
obj = obj.split(" ");
|
||||
_adjustOffsetFromHelper: function( obj ) {
|
||||
if ( typeof obj === "string" ) {
|
||||
obj = obj.split( " " );
|
||||
}
|
||||
if ($.isArray(obj)) {
|
||||
obj = { left: +obj[0], top: +obj[1] || 0 };
|
||||
if ( $.isArray( obj ) ) {
|
||||
obj = { left: +obj[ 0 ], top: +obj[ 1 ] || 0 };
|
||||
}
|
||||
if ("left" in obj) {
|
||||
if ( "left" in obj ) {
|
||||
this.offset.click.left = obj.left + this.margins.left;
|
||||
}
|
||||
if ("right" in obj) {
|
||||
if ( "right" in obj ) {
|
||||
this.offset.click.left = this.helperProportions.width - obj.right + this.margins.left;
|
||||
}
|
||||
if ("top" in obj) {
|
||||
if ( "top" in obj ) {
|
||||
this.offset.click.top = obj.top + this.margins.top;
|
||||
}
|
||||
if ("bottom" in obj) {
|
||||
if ( "bottom" in obj ) {
|
||||
this.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top;
|
||||
}
|
||||
},
|
||||
@ -418,7 +420,7 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
// 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent
|
||||
// 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that
|
||||
// the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag
|
||||
if (this.cssPosition === "absolute" && this.scrollParent[0] !== document && $.contains(this.scrollParent[0], this.offsetParent[0])) {
|
||||
if ( this.cssPosition === "absolute" && this.scrollParent[ 0 ] !== document && $.contains( this.scrollParent[ 0 ], this.offsetParent[ 0 ] ) ) {
|
||||
po.left += this.scrollParent.scrollLeft();
|
||||
po.top += this.scrollParent.scrollTop();
|
||||
}
|
||||
@ -428,8 +430,8 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
}
|
||||
|
||||
return {
|
||||
top: po.top + (parseInt(this.offsetParent.css("borderTopWidth"), 10) || 0),
|
||||
left: po.left + (parseInt(this.offsetParent.css("borderLeftWidth"), 10) || 0)
|
||||
top: po.top + ( parseInt( this.offsetParent.css( "borderTopWidth" ), 10 ) || 0 ),
|
||||
left: po.left + ( parseInt( this.offsetParent.css( "borderLeftWidth" ), 10 ) || 0 )
|
||||
};
|
||||
|
||||
},
|
||||
@ -443,18 +445,18 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
scrollIsRootNode = this._isRootNode( this.scrollParent[ 0 ] );
|
||||
|
||||
return {
|
||||
top: p.top - ( parseInt(this.helper.css( "top" ), 10) || 0 ) + ( !scrollIsRootNode ? this.scrollParent.scrollTop() : 0 ),
|
||||
left: p.left - ( parseInt(this.helper.css( "left" ), 10) || 0 ) + ( !scrollIsRootNode ? this.scrollParent.scrollLeft() : 0 )
|
||||
top: p.top - ( parseInt( this.helper.css( "top" ), 10 ) || 0 ) + ( !scrollIsRootNode ? this.scrollParent.scrollTop() : 0 ),
|
||||
left: p.left - ( parseInt( this.helper.css( "left" ), 10 ) || 0 ) + ( !scrollIsRootNode ? this.scrollParent.scrollLeft() : 0 )
|
||||
};
|
||||
|
||||
},
|
||||
|
||||
_cacheMargins: function() {
|
||||
this.margins = {
|
||||
left: (parseInt(this.element.css("marginLeft"), 10) || 0),
|
||||
top: (parseInt(this.element.css("marginTop"), 10) || 0),
|
||||
right: (parseInt(this.element.css("marginRight"), 10) || 0),
|
||||
bottom: (parseInt(this.element.css("marginBottom"), 10) || 0)
|
||||
left: ( parseInt( this.element.css( "marginLeft" ), 10 ) || 0 ),
|
||||
top: ( parseInt( this.element.css( "marginTop" ), 10 ) || 0 ),
|
||||
right: ( parseInt( this.element.css( "marginRight" ), 10 ) || 0 ),
|
||||
bottom: ( parseInt( this.element.css( "marginBottom" ), 10 ) || 0 )
|
||||
};
|
||||
},
|
||||
|
||||
@ -488,7 +490,7 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
return;
|
||||
}
|
||||
|
||||
if ( o.containment === "document") {
|
||||
if ( o.containment === "document" ) {
|
||||
this.containment = [
|
||||
0,
|
||||
0,
|
||||
@ -535,9 +537,9 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
this.relativeContainer = c;
|
||||
},
|
||||
|
||||
_convertPositionTo: function(d, pos) {
|
||||
_convertPositionTo: function( d, pos ) {
|
||||
|
||||
if (!pos) {
|
||||
if ( !pos ) {
|
||||
pos = this.position;
|
||||
}
|
||||
|
||||
@ -549,13 +551,13 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
pos.top + // The absolute mouse position
|
||||
this.offset.relative.top * mod + // Only for relative positioned nodes: Relative offset from element to offset parent
|
||||
this.offset.parent.top * mod - // The offsetParent's offset without borders (offset + border)
|
||||
( ( this.cssPosition === "fixed" ? -this.offset.scroll.top : ( scrollIsRootNode ? 0 : this.offset.scroll.top ) ) * mod)
|
||||
( ( this.cssPosition === "fixed" ? -this.offset.scroll.top : ( scrollIsRootNode ? 0 : this.offset.scroll.top ) ) * mod )
|
||||
),
|
||||
left: (
|
||||
pos.left + // The absolute mouse position
|
||||
this.offset.relative.left * mod + // Only for relative positioned nodes: Relative offset from element to offset parent
|
||||
this.offset.parent.left * mod - // The offsetParent's offset without borders (offset + border)
|
||||
( ( this.cssPosition === "fixed" ? -this.offset.scroll.left : ( scrollIsRootNode ? 0 : this.offset.scroll.left ) ) * mod)
|
||||
( ( this.cssPosition === "fixed" ? -this.offset.scroll.left : ( scrollIsRootNode ? 0 : this.offset.scroll.left ) ) * mod )
|
||||
)
|
||||
};
|
||||
|
||||
@ -585,7 +587,7 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
// If we are not dragging yet, we won't check for options
|
||||
if ( constrainPosition ) {
|
||||
if ( this.containment ) {
|
||||
if ( this.relativeContainer ){
|
||||
if ( this.relativeContainer ) {
|
||||
co = this.relativeContainer.offset();
|
||||
containment = [
|
||||
this.containment[ 0 ] + co.left,
|
||||
@ -597,27 +599,28 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
containment = this.containment;
|
||||
}
|
||||
|
||||
if (event.pageX - this.offset.click.left < containment[0]) {
|
||||
pageX = containment[0] + this.offset.click.left;
|
||||
if ( event.pageX - this.offset.click.left < containment[ 0 ] ) {
|
||||
pageX = containment[ 0 ] + this.offset.click.left;
|
||||
}
|
||||
if (event.pageY - this.offset.click.top < containment[1]) {
|
||||
pageY = containment[1] + this.offset.click.top;
|
||||
if ( event.pageY - this.offset.click.top < containment[ 1 ] ) {
|
||||
pageY = containment[ 1 ] + this.offset.click.top;
|
||||
}
|
||||
if (event.pageX - this.offset.click.left > containment[2]) {
|
||||
pageX = containment[2] + this.offset.click.left;
|
||||
if ( event.pageX - this.offset.click.left > containment[ 2 ] ) {
|
||||
pageX = containment[ 2 ] + this.offset.click.left;
|
||||
}
|
||||
if (event.pageY - this.offset.click.top > containment[3]) {
|
||||
pageY = containment[3] + this.offset.click.top;
|
||||
if ( event.pageY - this.offset.click.top > containment[ 3 ] ) {
|
||||
pageY = containment[ 3 ] + this.offset.click.top;
|
||||
}
|
||||
}
|
||||
|
||||
if (o.grid) {
|
||||
//Check for grid elements set to 0 to prevent divide by 0 error causing invalid argument errors in IE (see ticket #6950)
|
||||
top = o.grid[1] ? this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1] : this.originalPageY;
|
||||
pageY = containment ? ((top - this.offset.click.top >= containment[1] || top - this.offset.click.top > containment[3]) ? top : ((top - this.offset.click.top >= containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top;
|
||||
if ( o.grid ) {
|
||||
|
||||
left = o.grid[0] ? this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0] : this.originalPageX;
|
||||
pageX = containment ? ((left - this.offset.click.left >= containment[0] || left - this.offset.click.left > containment[2]) ? left : ((left - this.offset.click.left >= containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left;
|
||||
//Check for grid elements set to 0 to prevent divide by 0 error causing invalid argument errors in IE (see ticket #6950)
|
||||
top = o.grid[ 1 ] ? this.originalPageY + Math.round( ( pageY - this.originalPageY ) / o.grid[ 1 ] ) * o.grid[ 1 ] : this.originalPageY;
|
||||
pageY = containment ? ( ( top - this.offset.click.top >= containment[ 1 ] || top - this.offset.click.top > containment[ 3 ] ) ? top : ( ( top - this.offset.click.top >= containment[ 1 ] ) ? top - o.grid[ 1 ] : top + o.grid[ 1 ] ) ) : top;
|
||||
|
||||
left = o.grid[ 0 ] ? this.originalPageX + Math.round( ( pageX - this.originalPageX ) / o.grid[ 0 ] ) * o.grid[ 0 ] : this.originalPageX;
|
||||
pageX = containment ? ( ( left - this.offset.click.left >= containment[ 0 ] || left - this.offset.click.left > containment[ 2 ] ) ? left : ( ( left - this.offset.click.left >= containment[ 0 ] ) ? left - o.grid[ 0 ] : left + o.grid[ 0 ] ) ) : left;
|
||||
}
|
||||
|
||||
if ( o.axis === "y" ) {
|
||||
@ -650,7 +653,7 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
|
||||
_clear: function() {
|
||||
this._removeClass( this.helper, "ui-draggable-dragging" );
|
||||
if (this.helper[0] !== this.element[0] && !this.cancelHelperRemoval) {
|
||||
if ( this.helper[ 0 ] !== this.element[ 0 ] && !this.cancelHelperRemoval ) {
|
||||
this.helper.remove();
|
||||
}
|
||||
this.helper = null;
|
||||
@ -685,16 +688,16 @@ $.widget("ui.draggable", $.ui.mouse, {
|
||||
};
|
||||
}
|
||||
|
||||
});
|
||||
} );
|
||||
|
||||
$.ui.plugin.add( "draggable", "connectToSortable", {
|
||||
start: function( event, ui, draggable ) {
|
||||
var uiSortable = $.extend( {}, ui, {
|
||||
item: draggable.element
|
||||
});
|
||||
} );
|
||||
|
||||
draggable.sortables = [];
|
||||
$( draggable.options.connectToSortable ).each(function() {
|
||||
$( draggable.options.connectToSortable ).each( function() {
|
||||
var sortable = $( this ).sortable( "instance" );
|
||||
|
||||
if ( sortable && !sortable.options.disabled ) {
|
||||
@ -704,14 +707,14 @@ $.ui.plugin.add( "draggable", "connectToSortable", {
|
||||
// which is used in drag. This ensures it's initialized and synchronized
|
||||
// with any changes that might have happened on the page since initialization.
|
||||
sortable.refreshPositions();
|
||||
sortable._trigger("activate", event, uiSortable);
|
||||
sortable._trigger( "activate", event, uiSortable );
|
||||
}
|
||||
});
|
||||
} );
|
||||
},
|
||||
stop: function( event, ui, draggable ) {
|
||||
var uiSortable = $.extend( {}, ui, {
|
||||
item: draggable.element
|
||||
});
|
||||
} );
|
||||
|
||||
draggable.cancelHelperRemoval = false;
|
||||
|
||||
@ -734,12 +737,13 @@ $.ui.plugin.add( "draggable", "connectToSortable", {
|
||||
left: sortable.placeholder.css( "left" )
|
||||
};
|
||||
|
||||
sortable._mouseStop(event);
|
||||
sortable._mouseStop( event );
|
||||
|
||||
// Once drag has ended, the sortable should return to using
|
||||
// its original helper, not the shared helper from draggable
|
||||
sortable.options.helper = sortable.options._helper;
|
||||
} else {
|
||||
|
||||
// Prevent this Sortable from removing the helper.
|
||||
// However, don't set the draggable to remove the helper
|
||||
// either as another connected Sortable may yet handle the removal.
|
||||
@ -747,7 +751,7 @@ $.ui.plugin.add( "draggable", "connectToSortable", {
|
||||
|
||||
sortable._trigger( "deactivate", event, uiSortable );
|
||||
}
|
||||
});
|
||||
} );
|
||||
},
|
||||
drag: function( event, ui, draggable ) {
|
||||
$.each( draggable.sortables, function() {
|
||||
@ -763,6 +767,7 @@ $.ui.plugin.add( "draggable", "connectToSortable", {
|
||||
innermostIntersecting = true;
|
||||
|
||||
$.each( draggable.sortables, function() {
|
||||
|
||||
// Copy over variables that sortable's _intersectsWith uses
|
||||
this.positionAbs = draggable.positionAbs;
|
||||
this.helperProportions = draggable.helperProportions;
|
||||
@ -775,10 +780,11 @@ $.ui.plugin.add( "draggable", "connectToSortable", {
|
||||
}
|
||||
|
||||
return innermostIntersecting;
|
||||
});
|
||||
} );
|
||||
}
|
||||
|
||||
if ( innermostIntersecting ) {
|
||||
|
||||
// If it intersects, we use a little isOver variable and set it once,
|
||||
// so that the move-in stuff gets fired only once.
|
||||
if ( !sortable.isOver ) {
|
||||
@ -823,7 +829,7 @@ $.ui.plugin.add( "draggable", "connectToSortable", {
|
||||
// adding to one sortable changes the location of the other sortables (#9675)
|
||||
$.each( draggable.sortables, function() {
|
||||
this.refreshPositions();
|
||||
});
|
||||
} );
|
||||
|
||||
// Hack so receive/update callbacks work (mostly)
|
||||
draggable.currentItem = draggable.element;
|
||||
@ -832,12 +838,14 @@ $.ui.plugin.add( "draggable", "connectToSortable", {
|
||||
|
||||
if ( sortable.currentItem ) {
|
||||
sortable._mouseDrag( event );
|
||||
|
||||
// Copy the sortable's position because the draggable's can potentially reflect
|
||||
// a relative position, while sortable is always absolute, which the dragged
|
||||
// element has now become. (#8809)
|
||||
ui.position = sortable.position;
|
||||
}
|
||||
} else {
|
||||
|
||||
// If it doesn't intersect with the sortable, and it intersected before,
|
||||
// we fake the drag stop of the sortable, but make sure it doesn't remove
|
||||
// the helper by using cancelHelperRemoval.
|
||||
@ -878,49 +886,49 @@ $.ui.plugin.add( "draggable", "connectToSortable", {
|
||||
// from one sortable changes the location of other sortables (#9675)
|
||||
$.each( draggable.sortables, function() {
|
||||
this.refreshPositions();
|
||||
});
|
||||
} );
|
||||
}
|
||||
}
|
||||
});
|
||||
} );
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
$.ui.plugin.add("draggable", "cursor", {
|
||||
$.ui.plugin.add( "draggable", "cursor", {
|
||||
start: function( event, ui, instance ) {
|
||||
var t = $( "body" ),
|
||||
o = instance.options;
|
||||
|
||||
if (t.css("cursor")) {
|
||||
o._cursor = t.css("cursor");
|
||||
if ( t.css( "cursor" ) ) {
|
||||
o._cursor = t.css( "cursor" );
|
||||
}
|
||||
t.css("cursor", o.cursor);
|
||||
t.css( "cursor", o.cursor );
|
||||
},
|
||||
stop: function( event, ui, instance ) {
|
||||
var o = instance.options;
|
||||
if (o._cursor) {
|
||||
$("body").css("cursor", o._cursor);
|
||||
if ( o._cursor ) {
|
||||
$( "body" ).css( "cursor", o._cursor );
|
||||
}
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
$.ui.plugin.add("draggable", "opacity", {
|
||||
$.ui.plugin.add( "draggable", "opacity", {
|
||||
start: function( event, ui, instance ) {
|
||||
var t = $( ui.helper ),
|
||||
o = instance.options;
|
||||
if (t.css("opacity")) {
|
||||
o._opacity = t.css("opacity");
|
||||
if ( t.css( "opacity" ) ) {
|
||||
o._opacity = t.css( "opacity" );
|
||||
}
|
||||
t.css("opacity", o.opacity);
|
||||
t.css( "opacity", o.opacity );
|
||||
},
|
||||
stop: function( event, ui, instance ) {
|
||||
var o = instance.options;
|
||||
if (o._opacity) {
|
||||
$(ui.helper).css("opacity", o._opacity);
|
||||
if ( o._opacity ) {
|
||||
$( ui.helper ).css( "opacity", o._opacity );
|
||||
}
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
$.ui.plugin.add("draggable", "scroll", {
|
||||
$.ui.plugin.add( "draggable", "scroll", {
|
||||
start: function( event, ui, i ) {
|
||||
if ( !i.scrollParentNotHidden ) {
|
||||
i.scrollParentNotHidden = i.helper.scrollParent( false );
|
||||
@ -956,49 +964,49 @@ $.ui.plugin.add("draggable", "scroll", {
|
||||
|
||||
} else {
|
||||
|
||||
if (!o.axis || o.axis !== "x") {
|
||||
if (event.pageY - $(document).scrollTop() < o.scrollSensitivity) {
|
||||
scrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed);
|
||||
} else if ($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) {
|
||||
scrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed);
|
||||
if ( !o.axis || o.axis !== "x" ) {
|
||||
if ( event.pageY - $( document ).scrollTop() < o.scrollSensitivity ) {
|
||||
scrolled = $( document ).scrollTop( $( document ).scrollTop() - o.scrollSpeed );
|
||||
} else if ( $( window ).height() - ( event.pageY - $( document ).scrollTop() ) < o.scrollSensitivity ) {
|
||||
scrolled = $( document ).scrollTop( $( document ).scrollTop() + o.scrollSpeed );
|
||||
}
|
||||
}
|
||||
|
||||
if (!o.axis || o.axis !== "y") {
|
||||
if (event.pageX - $(document).scrollLeft() < o.scrollSensitivity) {
|
||||
scrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed);
|
||||
} else if ($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) {
|
||||
scrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed);
|
||||
if ( !o.axis || o.axis !== "y" ) {
|
||||
if ( event.pageX - $( document ).scrollLeft() < o.scrollSensitivity ) {
|
||||
scrolled = $( document ).scrollLeft( $( document ).scrollLeft() - o.scrollSpeed );
|
||||
} else if ( $( window ).width() - ( event.pageX - $( document ).scrollLeft() ) < o.scrollSensitivity ) {
|
||||
scrolled = $( document ).scrollLeft( $( document ).scrollLeft() + o.scrollSpeed );
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) {
|
||||
$.ui.ddmanager.prepareOffsets(i, event);
|
||||
if ( scrolled !== false && $.ui.ddmanager && !o.dropBehaviour ) {
|
||||
$.ui.ddmanager.prepareOffsets( i, event );
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
$.ui.plugin.add("draggable", "snap", {
|
||||
$.ui.plugin.add( "draggable", "snap", {
|
||||
start: function( event, ui, i ) {
|
||||
|
||||
var o = i.options;
|
||||
|
||||
i.snapElements = [];
|
||||
|
||||
$(o.snap.constructor !== String ? ( o.snap.items || ":data(ui-draggable)" ) : o.snap).each(function() {
|
||||
var $t = $(this),
|
||||
$( o.snap.constructor !== String ? ( o.snap.items || ":data(ui-draggable)" ) : o.snap ).each( function() {
|
||||
var $t = $( this ),
|
||||
$o = $t.offset();
|
||||
if (this !== i.element[0]) {
|
||||
i.snapElements.push({
|
||||
if ( this !== i.element[ 0 ] ) {
|
||||
i.snapElements.push( {
|
||||
item: this,
|
||||
width: $t.outerWidth(), height: $t.outerHeight(),
|
||||
top: $o.top, left: $o.left
|
||||
});
|
||||
} );
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
},
|
||||
drag: function( event, ui, inst ) {
|
||||
@ -1009,108 +1017,108 @@ $.ui.plugin.add("draggable", "snap", {
|
||||
x1 = ui.offset.left, x2 = x1 + inst.helperProportions.width,
|
||||
y1 = ui.offset.top, y2 = y1 + inst.helperProportions.height;
|
||||
|
||||
for (i = inst.snapElements.length - 1; i >= 0; i--){
|
||||
for ( i = inst.snapElements.length - 1; i >= 0; i-- ) {
|
||||
|
||||
l = inst.snapElements[i].left - inst.margins.left;
|
||||
r = l + inst.snapElements[i].width;
|
||||
t = inst.snapElements[i].top - inst.margins.top;
|
||||
b = t + inst.snapElements[i].height;
|
||||
l = inst.snapElements[ i ].left - inst.margins.left;
|
||||
r = l + inst.snapElements[ i ].width;
|
||||
t = inst.snapElements[ i ].top - inst.margins.top;
|
||||
b = t + inst.snapElements[ i ].height;
|
||||
|
||||
if ( x2 < l - d || x1 > r + d || y2 < t - d || y1 > b + d || !$.contains( inst.snapElements[ i ].item.ownerDocument, inst.snapElements[ i ].item ) ) {
|
||||
if (inst.snapElements[i].snapping) {
|
||||
(inst.options.snap.release && inst.options.snap.release.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item })));
|
||||
if ( inst.snapElements[ i ].snapping ) {
|
||||
( inst.options.snap.release && inst.options.snap.release.call( inst.element, event, $.extend( inst._uiHash(), { snapItem: inst.snapElements[ i ].item } ) ) );
|
||||
}
|
||||
inst.snapElements[i].snapping = false;
|
||||
inst.snapElements[ i ].snapping = false;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (o.snapMode !== "inner") {
|
||||
ts = Math.abs(t - y2) <= d;
|
||||
bs = Math.abs(b - y1) <= d;
|
||||
ls = Math.abs(l - x2) <= d;
|
||||
rs = Math.abs(r - x1) <= d;
|
||||
if (ts) {
|
||||
ui.position.top = inst._convertPositionTo("relative", { top: t - inst.helperProportions.height, left: 0 }).top;
|
||||
if ( o.snapMode !== "inner" ) {
|
||||
ts = Math.abs( t - y2 ) <= d;
|
||||
bs = Math.abs( b - y1 ) <= d;
|
||||
ls = Math.abs( l - x2 ) <= d;
|
||||
rs = Math.abs( r - x1 ) <= d;
|
||||
if ( ts ) {
|
||||
ui.position.top = inst._convertPositionTo( "relative", { top: t - inst.helperProportions.height, left: 0 } ).top;
|
||||
}
|
||||
if (bs) {
|
||||
ui.position.top = inst._convertPositionTo("relative", { top: b, left: 0 }).top;
|
||||
if ( bs ) {
|
||||
ui.position.top = inst._convertPositionTo( "relative", { top: b, left: 0 } ).top;
|
||||
}
|
||||
if (ls) {
|
||||
ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l - inst.helperProportions.width }).left;
|
||||
if ( ls ) {
|
||||
ui.position.left = inst._convertPositionTo( "relative", { top: 0, left: l - inst.helperProportions.width } ).left;
|
||||
}
|
||||
if (rs) {
|
||||
ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r }).left;
|
||||
if ( rs ) {
|
||||
ui.position.left = inst._convertPositionTo( "relative", { top: 0, left: r } ).left;
|
||||
}
|
||||
}
|
||||
|
||||
first = (ts || bs || ls || rs);
|
||||
first = ( ts || bs || ls || rs );
|
||||
|
||||
if (o.snapMode !== "outer") {
|
||||
ts = Math.abs(t - y1) <= d;
|
||||
bs = Math.abs(b - y2) <= d;
|
||||
ls = Math.abs(l - x1) <= d;
|
||||
rs = Math.abs(r - x2) <= d;
|
||||
if (ts) {
|
||||
ui.position.top = inst._convertPositionTo("relative", { top: t, left: 0 }).top;
|
||||
if ( o.snapMode !== "outer" ) {
|
||||
ts = Math.abs( t - y1 ) <= d;
|
||||
bs = Math.abs( b - y2 ) <= d;
|
||||
ls = Math.abs( l - x1 ) <= d;
|
||||
rs = Math.abs( r - x2 ) <= d;
|
||||
if ( ts ) {
|
||||
ui.position.top = inst._convertPositionTo( "relative", { top: t, left: 0 } ).top;
|
||||
}
|
||||
if (bs) {
|
||||
ui.position.top = inst._convertPositionTo("relative", { top: b - inst.helperProportions.height, left: 0 }).top;
|
||||
if ( bs ) {
|
||||
ui.position.top = inst._convertPositionTo( "relative", { top: b - inst.helperProportions.height, left: 0 } ).top;
|
||||
}
|
||||
if (ls) {
|
||||
ui.position.left = inst._convertPositionTo("relative", { top: 0, left: l }).left;
|
||||
if ( ls ) {
|
||||
ui.position.left = inst._convertPositionTo( "relative", { top: 0, left: l } ).left;
|
||||
}
|
||||
if (rs) {
|
||||
ui.position.left = inst._convertPositionTo("relative", { top: 0, left: r - inst.helperProportions.width }).left;
|
||||
if ( rs ) {
|
||||
ui.position.left = inst._convertPositionTo( "relative", { top: 0, left: r - inst.helperProportions.width } ).left;
|
||||
}
|
||||
}
|
||||
|
||||
if (!inst.snapElements[i].snapping && (ts || bs || ls || rs || first)) {
|
||||
(inst.options.snap.snap && inst.options.snap.snap.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item })));
|
||||
if ( !inst.snapElements[ i ].snapping && ( ts || bs || ls || rs || first ) ) {
|
||||
( inst.options.snap.snap && inst.options.snap.snap.call( inst.element, event, $.extend( inst._uiHash(), { snapItem: inst.snapElements[ i ].item } ) ) );
|
||||
}
|
||||
inst.snapElements[i].snapping = (ts || bs || ls || rs || first);
|
||||
inst.snapElements[ i ].snapping = ( ts || bs || ls || rs || first );
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
$.ui.plugin.add("draggable", "stack", {
|
||||
$.ui.plugin.add( "draggable", "stack", {
|
||||
start: function( event, ui, instance ) {
|
||||
var min,
|
||||
o = instance.options,
|
||||
group = $.makeArray($(o.stack)).sort(function(a, b) {
|
||||
return (parseInt($(a).css("zIndex"), 10) || 0) - (parseInt($(b).css("zIndex"), 10) || 0);
|
||||
});
|
||||
group = $.makeArray( $( o.stack ) ).sort( function( a, b ) {
|
||||
return ( parseInt( $( a ).css( "zIndex" ), 10 ) || 0 ) - ( parseInt( $( b ).css( "zIndex" ), 10 ) || 0 );
|
||||
} );
|
||||
|
||||
if (!group.length) { return; }
|
||||
if ( !group.length ) { return; }
|
||||
|
||||
min = parseInt($(group[0]).css("zIndex"), 10) || 0;
|
||||
$(group).each(function(i) {
|
||||
$(this).css("zIndex", min + i);
|
||||
});
|
||||
this.css("zIndex", (min + group.length));
|
||||
min = parseInt( $( group[ 0 ] ).css( "zIndex" ), 10 ) || 0;
|
||||
$( group ).each( function( i ) {
|
||||
$( this ).css( "zIndex", min + i );
|
||||
} );
|
||||
this.css( "zIndex", ( min + group.length ) );
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
$.ui.plugin.add("draggable", "zIndex", {
|
||||
$.ui.plugin.add( "draggable", "zIndex", {
|
||||
start: function( event, ui, instance ) {
|
||||
var t = $( ui.helper ),
|
||||
o = instance.options;
|
||||
|
||||
if (t.css("zIndex")) {
|
||||
o._zIndex = t.css("zIndex");
|
||||
if ( t.css( "zIndex" ) ) {
|
||||
o._zIndex = t.css( "zIndex" );
|
||||
}
|
||||
t.css("zIndex", o.zIndex);
|
||||
t.css( "zIndex", o.zIndex );
|
||||
},
|
||||
stop: function( event, ui, instance ) {
|
||||
var o = instance.options;
|
||||
|
||||
if (o._zIndex) {
|
||||
$(ui.helper).css("zIndex", o._zIndex);
|
||||
if ( o._zIndex ) {
|
||||
$( ui.helper ).css( "zIndex", o._zIndex );
|
||||
}
|
||||
}
|
||||
});
|
||||
} );
|
||||
|
||||
return $.ui.draggable;
|
||||
|
||||
}));
|
||||
} ) );
|
||||
|
Loading…
Reference in New Issue
Block a user