dragdealer icon indicating copy to clipboard operation
dragdealer copied to clipboard

Edge browser with touch screen not working

Open R2D221 opened this issue 9 years ago • 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.

R2D221 avatar Sep 17 '15 13:09 R2D221

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

mattkoch614 avatar Dec 15 '15 18:12 mattkoch614

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.

mattkoch614 avatar Dec 15 '15 20:12 mattkoch614