aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.draggable.js
Commit message (Collapse)AuthorAgeFilesLines
* Source formattingEduardo Lundgren2008-11-281-14/+14
|
* core: improved logic of $.fn.scrollParent, taking positioning in accountPaul Bakaus2008-11-231-116/+114
| | | | draggable: fixed and updated tests, rewrote positioning core, now passes the test suite completely in FF, IE6, IE7
* draggable: added missing default for zIndex and cursorAt, added missing ↵Paul Bakaus2008-11-211-1/+3
| | | | scroll tests (unfortunately showing big regressions that need to be fixed prior to 1.6)
* draggable: the snap events 'release' and 'snap' now both have valid ↵Paul Bakaus2008-11-211-2/+2
| | | | mousemove events attached.
* draggable, droppable, resizable, selectable, sortable: formatting changes - ↵Richard Worth2008-11-211-208/+217
| | | | | | moved some things around for consistency. _init and destroy at the top, then _mouse methods. plugins, ui last. Sorted defaults and plugins alphabetically.
* New file: AUTHORS.txt instead of having a single contributor's name in each ↵Richard Worth2008-11-211-1/+1
| | | | file header. See http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/ca0b1cc9580141b
* fixed #3578 - ALL CODE: e, ui should be changed to event, uiRichard Worth2008-11-141-66/+66
|
* Change name of intersect methods to isOverHeight/isOverWidth/isOver.Eduardo Lundgren2008-11-101-1/+1
|
* Draggable: Avoid conflict with droppable $.ui.intersect. Now using ↵Eduardo Lundgren2008-11-101-1/+1
| | | | $.ui.intersects.
* Draggable: Using the new core intersect method on connectToSortable.Eduardo Lundgren2008-11-101-133/+132
|
* Draggable - calling the new _ui() method from sortablesEduardo Lundgren2008-11-101-1/+1
|
* draggable: fixed nasty IE related scrolling bug - funny IE includes scroll ↵Paul Bakaus2008-11-061-2/+3
| | | | if you call offset() on <html>
* draggable: fixed two missing defaultsPaul Bakaus2008-11-031-1/+3
|
* draggable: fixed createHelper method (thanks Nate!)Paul Bakaus2008-10-141-2/+2
|
* added some missing draggables defaultsRichard Worth2008-10-081-4/+17
|
* adding version property to all ui componentsJörn Zaefferer2008-10-051-0/+1
|
* Draggable cancelHelperRemoval when is not overEduardo Lundgren2008-09-261-0/+1
|
* whitespace: Removed trailing whitespace from non-blank linesRichard Worth2008-09-201-1/+1
|
* whitespaceRichard Worth2008-09-201-50/+43
|
* Reverted r695.Scott González2008-09-191-104/+104
|
* Remove Trailing SpacesEduardo Lundgren2008-09-191-104/+104
|
* droppable: $.ui.ddmanager.drop now returns false in case of non-drop, or the ↵Paul Bakaus2008-09-181-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 Bakaus2008-09-161-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 Bakaus2008-09-161-1/+1
| | | | 3424)
* core: hasScroll now checks for overflow hidden, since then the users wants ↵Paul Bakaus2008-09-161-2/+3
| | | | | | scroll to be hidden draggable: containment respects overflow hidden (fixes #3328)
* - kickass draggable refactoring - fixes many bugs, many edge case issuesPaul Bakaus2008-09-151-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 Worth2008-09-041-1/+1
|
* draggable: removing loggingJörn Zaefferer2008-09-031-1/+0
|
* draggable: sortable.refreshItems got renamed to _refreshItemsJörn Zaefferer2008-09-031-1/+2
|
* draggable: wrong class when trying to remove iframeFix divs (fixes #3161)Paul Bakaus2008-09-011-1/+1
|
* internal methods: mouse*Chi Cheng2008-08-171-11/+11
|
* Internal methods: fixes #3195, #3196, #3200, #3201, #3209Chi Cheng2008-08-171-27/+27
|
* draggable: fix snapTolerance option instead of defaultChi Cheng2008-08-101-8/+8
|
* draggable: fixed regression with convertPositionTo method and scroll offsetsPaul Bakaus2008-07-301-4/+7
|
* draggable: fixed ugly regression when no overflowed container existedPaul Bakaus2008-07-291-8/+8
|
* draggable: fixed IE scrolling but with overflowing containers and appendTo ↵Paul Bakaus2008-07-291-15/+26
| | | | being used
* draggable: fixed issue when scroll was set to true, and therefore droppables ↵Paul Bakaus2008-07-291-8/+12
| | | | inside changed their position as well
* draggable: fixed overflow calculation in the positioning methodsPaul Bakaus2008-07-291-26/+26
|
* draggable,droppable: implemented cssNamespace option, if set to false/null, ↵Paul Bakaus2008-07-281-2/+4
| | | | it won't add a class to the element
* 1.8: initial version of tree component, dependant upon sortables and droppablesPaul Bakaus2008-07-281-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 Bakaus2008-07-251-1/+1
| | | | revertDuration option
* draggable: implemented more advanced features for the snap option - you can ↵Paul Bakaus2008-07-171-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 Bakaus2008-07-171-17/+9
| | | | just for performance optimizations)
* draggable: removed adding the class ui-draggable in favor of the new data ↵Paul Bakaus2008-07-141-3/+2
| | | | selector
* Minorl performance improvements at draggable initEduardo Lundgren2008-07-101-3/+9
|
* prevent overriding/changing the actual $.ui.mouse object by extending it - ↵Paul Bakaus2008-07-071-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 Bakaus2008-07-031-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 #3002Paul Bakaus2008-06-301-0/+1
|
* draggable: removed a silly console.logPaul Bakaus2008-06-241-2/+0
|
* sortable: connected lists items are not refreshed until you actually move ↵Paul Bakaus2008-06-241-2/+4
| | | | into the connected list - this improves performance for connected lists