Fan Jin
Fan Jin
I'm having a hard time reproducing the issue on my end. I would be grateful if you can create a https://plnkr.co/ with your use case so I can work the...
Yes please @Thomas1664 , sorry I wasn't getting back to you sooner.
Hi @IlCallo , the `drag-scroll-item` directive is missing in your code example. Can you try the below? ``` // Stuff ```
hmm, I'm not sure what you mean by free dragging. Can you give me an example of what you are trying to achieve?
Ok, this is blocking you in any way? If not, I'll try to find time to investigate later this week.
@GravlLift this is not a Pull Request.
Could this be related to https://github.com/bfwg/ngx-drag-scroll/issues/149?
Can you give me an example? @arman2r plnker whould be nice
I believe [this](https://github.com/bfwg/ngx-drag-scroll/blob/develop/projects/ngx-drag-scroll/src/lib/ngx-drag-scroll.component.ts#L256) is where the issue is. We should add the on drag listener on the carousel, not the global document. I’m pretty busy today, but I can quickly...
Have you tried changing the listener to `this._contentRef.nativeElement` ``` this._onDragStartListener = this._renderer.listen(this._contentRef.nativeElement, 'dragstart', (e) => { e.preventDefault(); }); ```