We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 588fad8 commit 665e44fCopy full SHA for 665e44f
src/components/item/item-reorder-gesture.ts
@@ -134,7 +134,8 @@ export class ItemReorderGesture {
134
}
135
136
private itemForCoord(coord: PointerCoordinates): HTMLElement {
137
- const x = this.offset.x - 100;
+ const sideOffset = this.plt.isRTL ? 100 : -100;
138
+ const x = this.offset.x + sideOffset;
139
const y = coord.y;
140
const element = this.plt.getElementFromPoint(x, y);
141
return findReorderItem(element, this.reorderList.getNativeElement());
0 commit comments