aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.sortable.js
Commit message (Collapse)AuthorAgeFilesLines
* sortable: $.ui.plugin is not used anymore (fixes #3725)Paul Bakaus2009-01-161-115/+87
| | | | droppable: ixed activate/deactivate (jq 1.3 related), removed ui.element + ui.options
* Sortable: Fixed _trigger method.Scott González2009-01-161-2/+5
|
* Revert changes for #3838 for the release 1.6rc5Eduardo Lundgren2009-01-161-22/+16
|
* Fix for #3838 - Components should use this.widgetName on internallyEduardo Lundgren2009-01-161-16/+22
|
* core: fixed _trigger not modifing the original event with event.resultPaul Bakaus2009-01-091-1/+1
| | | | sortable: use event.result to listen for a return false
* sortable: don't copy content from the original item into the placeholder ↵Paul Bakaus2009-01-091-8/+7
| | | | anymore by default (fixes #3595), check if event still exists in _trigger, fixes issue when you call $(this).sortable('cancel') from within a callback
* draggable: removed unneeded comment blockPaul Bakaus2009-01-091-71/+77
| | | | sortable: fixed sort callback, merged position fixes from draggables
* sortable,draggable: fixed order and propagation of events (fixes #3658, ↵Paul Bakaus2009-01-081-24/+26
| | | | #3730 and #3726)
* draggable,droppable,sortable: properly implemented cssNamespace option ↵Paul Bakaus2009-01-071-10/+11
| | | | across plugins (selectable & resizable to go, so those options should stay undocumented until all plugins are converted. Fixes #3707)
* cancel option should take in account <option> (fixes #3786)Paul Bakaus2009-01-071-1/+1
|
* Happy New YearRichard Worth2009-01-031-1/+1
|
* sortable: merged draggable fixes into sortables (r1325,1313)Paul Bakaus2008-12-301-4/+12
|
* sortable: removed default tolerance "guess" for the simplier (and better ↵Paul Bakaus2008-12-171-4/+6
| | | | working) default mode, and the plain "pointer" intersection
* Sortable accurateIntersection using outerWidth/outerHeightEduardo Lundgren2008-12-171-6/+7
|
* sortable,draggable: fixed issues with _convertPositionTo, missed from latest ↵Paul Bakaus2008-12-111-12/+9
| | | | re-factor, miscalculated the absolute position including scroll
* sortable: fixed containment issue (with 'parent', height was miscalculated ↵Paul Bakaus2008-12-111-10/+10
| | | | due to wrong append order)
* sortable: fixed regression that caused wrong offset calculation if the ↵Paul Bakaus2008-12-021-6/+7
| | | | helper option has been set to "original"
* Source formattingEduardo Lundgren2008-11-281-27/+27
|
* sortable:Paul Bakaus2008-11-251-250/+252
| | | | | | | - merged back all position and scroll fixed from draggables - renamed accurate to accurateIntersection and set it to true by default - refactored intersection code (no change in logic) - added forceHelperSize option (default: false), a forced helper size is also triggered when the generated helper doesn't have any styles set for width/height, so this option won't be needed in most cases
* sortable: Another regex for the innerHTML copying in the placeholder, ↵Paul Bakaus2008-11-241-1/+3
| | | | removes the expando attribute in IE (fixes #3541)
* Sortables: using isOverAxis.Eduardo Lundgren2008-11-211-4/+4
|
* Sortables: Fixed tolerance guess. Changed name _intersectsWithEdges to ↵Eduardo Lundgren2008-11-211-12/+59
| | | | _intersectsWithPointer.
* draggable, droppable, resizable, selectable, sortable: formatting changes - ↵Richard Worth2008-11-211-300/+305
| | | | | | 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
* sortable: removing ui.options caused plugins not to work anymore - fixed all ↵Paul Bakaus2008-11-191-21/+20
| | | | regressions
* sortable: removed ui.element and ui.options from the UI object, corrected ↵Paul Bakaus2008-11-191-8/+6
| | | | the callback for the items option, now includes event if applicable
* fixed #3578 - ALL CODE: e, ui should be changed to event, uiRichard Worth2008-11-141-69/+69
|
* Sortable: remove console.logEduardo Lundgren2008-11-121-1/+0
|
* Sortable: More accuracy improvements.Eduardo Lundgren2008-11-121-15/+11
|
* Core and Sortable: $.ui.contains method moved into the core. This method ↵Eduardo Lundgren2008-11-121-18/+10
| | | | could be util for another components.
* Change name of intersect methods to isOverHeight/isOverWidth/isOver.Eduardo Lundgren2008-11-101-2/+2
|
* Sortable: Using the new core intersectHeight/intersectWidth methods.Eduardo Lundgren2008-11-101-20/+13
|
* sortable: returning false in any callback will now call this.cancenl() to ↵Paul Bakaus2008-11-061-1/+2
| | | | cancel the ongoing action
* sortable: removed support for ui.cancel(), must now be called via the ↵Paul Bakaus2008-11-041-7/+12
| | | | sortable() function as method (sortable('cancel')). Now works even if the drag is still ongoing, i.e. the mouse button is still pressed.
* sortable: implemented ui.cancel(), a function that can be called to ↵Paul Bakaus2008-11-031-6/+47
| | | | completely cancel the sortable attempt, and revert to the original state (implements #3283, #3402)
* sortable: checked inputs are not unchecked anymore after drag start (fixes ↵Paul Bakaus2008-11-031-1/+1
| | | | #3466)
* sortable: all events of the inner nodes of the sortable item were unbound ↵Paul Bakaus2008-11-031-2/+4
| | | | after the sort (this is related to remove() in jQuery, bugfix is not to use remove()), fixes #3488
* Sortable - accurate option added, If you prefer better accuracy and low ↵Eduardo Lundgren2008-10-301-18/+27
| | | | performance set accurate: true.
* Sortable - delta direction improvedEduardo Lundgren2008-10-281-4/+28
|
* Sortable - Float elements tolerance fixedEduardo Lundgren2008-10-281-1/+1
|
* Sortable - Prevent mouseCapture while help is revertingEduardo Lundgren2008-10-281-0/+8
|
* Sortable - Checking if helper existsEduardo Lundgren2008-10-281-3/+4
|
* Sortable - Tolerance accuracy sortable improvedEduardo Lundgren2008-10-281-239/+255
|
* sortable: fixed issue with first time append of the placeholder, now also ↵Paul Bakaus2008-10-171-5/+13
| | | | the original classes are appended to the placeholder, with usually should give it the right size
* sortable: fixed toArray methodPaul Bakaus2008-10-141-3/+3
| | | | coverflow: renamed init to _init
* adding version property to all ui componentsJörn Zaefferer2008-10-051-0/+1
|
* whitespace: Removed trailing whitespace from non-blank linesRichard Worth2008-09-201-2/+2
|
* whitespaceRichard Worth2008-09-201-70/+67
|
* Sortables - Avoid inline script execution on every sortEduardo Lundgren2008-09-191-4/+11
|
* Fixed #3454 - Sortable .createHelper() bugEduardo Lundgren2008-09-191-2/+2
|