Touch IE10

Touch IE10

Hello All
I just wanted to share how to add touch support for draggable in ie10 desktop and mobile. Currently draggable will work with a pen or mouse in IE but not touch. To add touch -ms-touch-action needs to be added to the css like below:


body{
-ms-touch-action: none;
}
#draggable { 
width: 150px;
height: 150px;
padding: 0.5em;
-ms-touch-action: manipulation;
}

I added a link to the demo below