Greetings,
Win7, Edge 3.0
I just updated from Edge 2.0 to 3.0 and now my previously working drag and drop doesn't work.
This is the code I have in Stage > creationComplete...
yepnope({nope:['jquery-ui.min.js','jquery.ui.touch-punch.min.js'],complete: init});
//when yepnope has loaded everything execute init();
//sym.$('parentIcon').css({
//});
function init(){
//Use the code! Draggable! Droppable!!
sym.$('parentIcon').draggable({revert:'invalid', cursor:"pointer"});
//Droppable... on the target!
sym.$('stepsDirectionsBox').droppable({
accept: sym.$('parentIcon'),
drop: function() {
sym.play('open');
}
});
};
It worked in the past, but now it doesn't.
Thanks for any help,
R