AutoScroll now finds next best scrollable parent as one drags

This commit is contained in:
Max Hoffmann 2018-01-13 17:50:00 -05:00
parent 563bb7b6ab
commit a389ee7cc0
No known key found for this signature in database
GPG Key ID: 1DFA4D13DD27A676

View File

@ -129,6 +129,10 @@ export default class AutoScroll {
* @private
*/
[onDragMove](dragEvent) {
this.findScrollableElementFrame = requestAnimationFrame(() => {
this.scrollableElement = closestScrollableElement(dragEvent.sensorEvent.target);
});
if (!this.scrollableElement) {
return;
}