Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | droppable: $.ui.ddmanager.drop now returns false in case of non-drop, or the ↵ | Paul Bakaus | 2008-09-18 | 1 | -1/+1 |
| | | | | | | actual droppable (instead of true) in the case of a drop. draggable: implemented patch that allows revert to be a callback, receives one argument which is the droppable (implements #3175) | ||||
* | draggable, resizable, sortable: proper usage of _mouseCapture, fixes ↵ | Paul Bakaus | 2008-09-16 | 1 | -5/+14 |
| | | | | interaction issues when many plugins are used on the same element (Fixes #3164) | ||||
* | draggable: destroy method now properly removes the class ui-draggable (Fixes ↵ | Paul Bakaus | 2008-09-16 | 1 | -1/+1 |
| | | | | 3424) | ||||
* | core: hasScroll now checks for overflow hidden, since then the users wants ↵ | Paul Bakaus | 2008-09-16 | 1 | -2/+3 |
| | | | | | | scroll to be hidden draggable: containment respects overflow hidden (fixes #3328) | ||||
* | - kickass draggable refactoring - fixes many bugs, many edge case issues | Paul Bakaus | 2008-09-15 | 1 | -64/+134 |
| | | | | - added many new tests to draggable, especially related to scrolling and helper clone | ||||
* | Fixed #3284 - Put version numbers inside of individual files. | Richard Worth | 2008-09-04 | 1 | -1/+1 |
| | |||||
* | draggable: removing logging | Jörn Zaefferer | 2008-09-03 | 1 | -1/+0 |
| | |||||
* | draggable: sortable.refreshItems got renamed to _refreshItems | Jörn Zaefferer | 2008-09-03 | 1 | -1/+2 |
| | |||||
* | draggable: wrong class when trying to remove iframeFix divs (fixes #3161) | Paul Bakaus | 2008-09-01 | 1 | -1/+1 |
| | |||||
* | internal methods: mouse* | Chi Cheng | 2008-08-17 | 1 | -11/+11 |
| | |||||
* | Internal methods: fixes #3195, #3196, #3200, #3201, #3209 | Chi Cheng | 2008-08-17 | 1 | -27/+27 |
| | |||||
* | draggable: fix snapTolerance option instead of default | Chi Cheng | 2008-08-10 | 1 | -8/+8 |
| | |||||
* | draggable: fixed regression with convertPositionTo method and scroll offsets | Paul Bakaus | 2008-07-30 | 1 | -4/+7 |
| | |||||
* | draggable: fixed ugly regression when no overflowed container existed | Paul Bakaus | 2008-07-29 | 1 | -8/+8 |
| | |||||
* | draggable: fixed IE scrolling but with overflowing containers and appendTo ↵ | Paul Bakaus | 2008-07-29 | 1 | -15/+26 |
| | | | | being used | ||||
* | draggable: fixed issue when scroll was set to true, and therefore droppables ↵ | Paul Bakaus | 2008-07-29 | 1 | -8/+12 |
| | | | | inside changed their position as well | ||||
* | draggable: fixed overflow calculation in the positioning methods | Paul Bakaus | 2008-07-29 | 1 | -26/+26 |
| | |||||
* | draggable,droppable: implemented cssNamespace option, if set to false/null, ↵ | Paul Bakaus | 2008-07-28 | 1 | -2/+4 |
| | | | | it won't add a class to the element | ||||
* | 1.8: initial version of tree component, dependant upon sortables and droppables | Paul Bakaus | 2008-07-28 | 1 | -1/+2 |
| | | | | 1.6: droppables can now operate in a seperate scope, droppables and sortables in the current dragged item are filtered out at start, preventing node hierarchy issues | ||||
* | draggable: since revert no longer checks for numbers, introduced a ↵ | Paul Bakaus | 2008-07-25 | 1 | -1/+1 |
| | | | | revertDuration option | ||||
* | draggable: implemented more advanced features for the snap option - you can ↵ | Paul Bakaus | 2008-07-17 | 1 | -3/+15 |
| | | | | now pass in a object instead of a bolean into "snap", possible keys are the callbacks snap/release (which both receive ui.snapItem) and items (jQuery selector, defaults to :data(draggable)) | ||||
* | draggable: fixed relative position bug (please NEVER check in elem.style ↵ | Paul Bakaus | 2008-07-17 | 1 | -17/+9 |
| | | | | just for performance optimizations) | ||||
* | draggable: removed adding the class ui-draggable in favor of the new data ↵ | Paul Bakaus | 2008-07-14 | 1 | -3/+2 |
| | | | | selector | ||||
* | Minorl performance improvements at draggable init | Eduardo Lundgren | 2008-07-10 | 1 | -3/+9 |
| | |||||
* | prevent overriding/changing the actual $.ui.mouse object by extending it - ↵ | Paul Bakaus | 2008-07-07 | 1 | -1/+1 |
| | | | | this was evil (i.e. caused draggables to have the mouseCapture method of sortables, and therefore failing to work) | ||||
* | draggable: revert option now accepts "invalid", "valid" and true as possible ↵ | Paul Bakaus | 2008-07-03 | 1 | -3/+4 |
| | | | | options: true always reverts, "invalid" only reverts when not dropped on a possible target, and "valid" does the contrary (implements #2914) | ||||
* | draggable: ui.absolutePosition, wasn't updated through plugins, fixes #3002 | Paul Bakaus | 2008-06-30 | 1 | -0/+1 |
| | |||||
* | draggable: removed a silly console.log | Paul Bakaus | 2008-06-24 | 1 | -2/+0 |
| | |||||
* | sortable: connected lists items are not refreshed until you actually move ↵ | Paul Bakaus | 2008-06-24 | 1 | -2/+4 |
| | | | | into the connected list - this improves performance for connected lists | ||||
* | draggable: fixed issue when placeholder didn't exist (fixes #3018) | Paul Bakaus | 2008-06-24 | 1 | -5/+5 |
| | |||||
* | Draggable: Changed mouse's cancel option from ":input,button" to ":input" ↵ | Scott González | 2008-06-18 | 1 | -1/+1 |
| | | | | (button is redundant). | ||||
* | Fixed #3016 - Distance option default | Richard Worth | 2008-06-18 | 1 | -1/+1 |
| | |||||
* | Dropped blank line at end of header comments. | Scott González | 2008-06-11 | 1 | -1/+0 |
| | |||||
* | Fixed draggable bug that affects the droppable critically - ↵ | Eduardo Lundgren | 2008-06-09 | 1 | -1/+1 |
| | | | | $.ui.ddmanager.current could not be null | ||||
* | Removed old rev ids from jQuery svn | Richard Worth | 2008-06-09 | 1 | -1/+0 |
| | |||||
* | ui-core: added mouseCapture, replacing the condition feature before. Allows ↵ | Paul Bakaus | 2008-06-09 | 1 | -0/+1 |
| | | | | text to be selected in sortables on non-handles. | ||||
* | draggable,sortable: fixed containment "document", added containment: ↵ | Paul Bakaus | 2008-06-07 | 1 | -1/+7 |
| | | | | "window" (fixes #2936,#2171) | ||||
* | draggable, sortable: fixed issue when handle wasn't working with elements ↵ | Paul Bakaus | 2008-06-07 | 1 | -1/+3 |
| | | | | nested in the handle (fixes #2937) | ||||
* | draggable: fixed cursorAt issue (#2965) | Paul Bakaus | 2008-06-07 | 1 | -4/+5 |
| | |||||
* | renamed source -> ui | Richard Worth | 2008-06-07 | 1 | -0/+552 |