Eduard Bespalov
Eduard Bespalov
The bug show case - http://codepen.io/tedbeer/pen/MwXEZg It happens when a drop zone inside another drop zone is bigger than the parent. DnD manager looks for a drop target and selectы...
[XMLHttpRequest 2](http://www.w3.org/TR/XMLHttpRequest2/) is already widely supported. 'progress' event is one of the highly requested features.
Attribute names starting on 'on' don't work. Example (@on is not readable): ``` ``` In normal HTML documents they work.
Inline event handlers can be evaluated later only when corresponding event is fired. That's how it works in modern browsers. As result inline handler and other onXXX attributes can be...
If img is created from string it does not load content in IE9. The following code works in FF, Chrome, IE10 but not in IE9 (standard mode): ``` ample.query('').appendTo(ample.documentElement); ```
If two drop targets have same size and position dragEnter (maybe other events) is not fired for the actual target: Here, for example, dragEvent is not fired for LI: `aaa`...