I'm using Eikon Web SDK and trying to follow the example from
http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_draganddrop.
However, when I published my application to Production, it seems like chromium in Eikon doesn't support this feature.
Please confirm whether I am correct or not.
//HTML
Drag the W3Schools image into the rectangle:
//Javascript
function allowDrop(ev) {
ev.preventDefault();
}
function drag(ev) {
ev.dataTransfer.setData("text", ev.target.id);
}
function drop(ev) {
ev.preventDefault();
var data = ev.dataTransfer.getData("text");
ev.target.appendChild(document.getElementById(data));
}