Kempelen
-
2014-05-22
- Milestone: 1.0 --> 1.1
Firefox support ideas/problems so far:
In script.js:
document.addEventListener("drag", dragBoxEvent, false);
has to be "dragover" in FF, "drag" in Chrome
In editorgui.js dragStart() probably these two lines are needed on FF:
//e.dataTransfer.setData("text/plain", e.target.id);
//e.dataTransfer.effectAllowed = "move";
Even with these, the browser keeps on jumping to "up.com" "left.com" "right.com" and "down.com" when the plain text data containing the direction word is dropped. Neither e.preventDefault() nor e.stopPropagation() helped.
The resizing operation and final result calculation is probably OK, but the browser asks about leaving the page, that makes it basically unusable.