ovidiuch/dragdealer

Edge browser with touch screen not working

Opened this issue · 2 comments

Using Windows 10 and the new browser Edge, if you try to use the touch screen to drag any of the sliders in the demo page, nothing happens. Dragging with the mouse still works.

I have the same problem with Edge. In addition, this also happens when using touch on IE 11.

What worked for us was adding the following CSS to our project, after dragdealer's CSS was loaded:

.dragdealer {
    touch-action: none;
    -ms-overflow-style: none;  
}

After implementing this, dragging functionality started working again in MS Edge and IE 11.