Custom Query (7259 matches)
Results (76 - 78 of 7259)
Ticket | Resolution | Summary | Owner | Reporter | ||
---|---|---|---|---|---|---|
#1922 | fixed | Option "unselected: true" in conjunction with Ajax tabs behaves incorrectly | ||||
Description |
|
|||||
#1923 | fixed | shadow enhancements, optimizations and clean-ups | ||||
Description |
I've attached a diff that includes a few optimizations, enhancements and general clean-ups of the code.
BTW ... the test page is using and xml prologue which is throwing IE into quirks mode and is why the position _looks_ to be miscalculated. Putting the test page in standards mode resolves this issue but causes issues for the drag handles. The monitoring in Opera does some pretty crazy stuff! Tested using the test page in IE 6 and 7, FF 1.5 and 2, Safari 3 and Opera 9.24 |
|||||
#1924 | fixed | UI Draggables (and perhaps others?) locations are off when parent element has a border | ||||
Description |
When a draggable's positioned parent (referenced as options.pp) has a border, the new position is off by +1 pixel. This occurs each time the draggable is dragged and is most apparent when using the "grid" option. The error that causes this is repeated in many places, three of which I have identified (though there might be more): ui.mouse.js, line 167-168: ui.mouse.js, line 222-223 (same code): ui.draggable.ext.js, line 198-199:
In all cases, extra space that might be created by a border is not accounted for in options.po and is in draggable.pos, creating a discrepancy and ultimately moving the draggable over. An easy solution might be to add in the border width in those places, like so:
but that is definitely not ideal, since it is both repeated in multiple places and slow if done multiple times. |