svn draggable: containment fails if grid set
The following code illustrates the bug:
<div style="position:absolute;top:50px;left:100px;width:210px;height:210px;background:#aaa">
<div id="test" style="position:absolute;left:0px;top:0px;width:40px;height:40px;background:#eee"></div>
</div>
<script type="text/javascript">
$('#test').draggable({containment:'parent', grid:[40,40]});
</script>
Note that placing grid plugin(in draggable.ext.js) before containment plugin is not correct solution, because then grid can be lost.
Change History (4)
need: |
Review →
Commit
|
Status: |
new →
assigned
|
Resolution: |
→ fixed
|
Status: |
assigned →
closed
|
This can only be solved by implementing a kind of priority stack. I will see what I can do, but it'll take some time.