You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just did a drag and drop test in IE9 and it doesn't work.
You're not able to drag an item - and it shows no erros in the console. I think it either should work in IE9 or it should be feature-detectable, so a proper fallback can be used.
Also -ms-user-select: none; should be added to your demo for improved IE support :)
The text was updated successfully, but these errors were encountered:
Ok, so I did some investigating and made it work. The problem is that while IE9 understands 'transform' as a CSS property, in JavaScript it needs the 'ms'-prefix like so: 'msTransform', so a simple test for that makes it work.
Hey pornel,
Just did a drag and drop test in IE9 and it doesn't work.
You're not able to drag an item - and it shows no erros in the console. I think it either should work in IE9 or it should be feature-detectable, so a proper fallback can be used.
Also -ms-user-select: none; should be added to your demo for improved IE support :)
The text was updated successfully, but these errors were encountered: