Skip to content

Commit 3200e46

Browse files
committed
Recalculate offsetTop at the beginning of a drag, because it may change if it's part of a nested structure;
Don't manually set opacity, do it in the css class;
1 parent c7cebfc commit 3200e46

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

jquery.sort.css

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
1-
.sortable-drag {
2-
position: absolute;
3-
border: 1px solid black;
4-
background: white;
5-
z-index: 1000;
1+
.sortable-active {
2+
cursor: move;
3+
}
64

7-
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
5+
.sortable-drag {
6+
position: absolute;
7+
border: 1px solid black;
8+
background: white;
9+
z-index: 1000;
10+
11+
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
812
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
913
-o-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
1014
box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
11-
}
15+
}
1216

13-
.sortable-drop {
14-
opacity: 0.25;
15-
}
17+
.sortable-drop {
18+
opacity: 0.10;
19+
}

jquery.sort.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@
9494
.drag('dragstart', function (ev, dd) {
9595
log('[dragstart]', 2);
9696

97+
offsetTop = sortableObject.offset().top;
98+
9799
//requires handle
98100
if (!$(ev.target).is(config.handle)) {
99101
return false;
@@ -161,8 +163,6 @@
161163
.drag('end', function (ev, dd) {
162164
log('[dragend]', 2);
163165

164-
$(this).css('opacity', 1);
165-
166166
sortableObject.removeClass(config.ddParentElementClassName);
167167
sortableObject.find(config.dragElementClass).remove();
168168
$(this).removeClass(config.dropElementClassName);

0 commit comments

Comments
 (0)