aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.draggable.js
Commit message (Collapse)AuthorAgeFilesLines
* All: Rename all files, removing the "jquery.ui." prefix;Rafael Xavier de Souza2014-01-241-1019/+0
| | | | | | | - By executing https://gist.github.com/jzaefferer/893fcf70b7eebc1dc271; Fixes #9464 Closes gh-1029
* All: Remove "Depends" commentRafael Xavier de Souza2014-01-241-5/+0
| | | | | Ref #9464 Ref gh-1029
* All: Wrap source files with UMD return exportsRafael Xavier de Souza2014-01-241-2/+19
| | | | | Ref #9464 Ref gh-1029
* Draggable: fix changing containmentBen Higgins2014-01-201-0/+2
| | | | | | | | | | | | | If containment was set such that relative_container is set by _setContainment, and then containment changes to e.g. "document", "window", or an array, relative_container would not be unset, causing incorrect containment of the draggable. Add a unittest to check that containment with an array works after previously being set to "parent". Fixes #9733 Closes gh-1176
* Slider & Interactions: Add Windows 8 touch supportTJ VanToll2014-01-151-0/+19
| | | | | | Fixes #9709 Fixes #9710 Closes gh-1152
* Draggable: normalize lookups for rootNodes when to bust scroll cache. Fixes ↵Mike Sherov2013-12-031-38/+26
| | | | | #9379 - Draggable: position bug in scrollable div Core: update scrollParent() to support all current supported browsers.
* Draggable: Make sure positional constraints are never applied to ↵Mike Sherov2013-10-211-4/+4
| | | | ui.originalPosition
* Draggable: apply axis options to position instead of style. Fixes #7251 - ↵Mike Sherov2013-10-201-6/+10
| | | | Draggable: constrained axis option returns incorrect position.
* Draggable: Safe activeElement access from iFrames for IE9, prevent window ↵TJ VanToll2013-08-281-3/+13
| | | | focus changes in IE9+. Fixed #9520 - Draggable: Browser window drops behind other windows in IE9/10
* Draggable: Ignore scroll offsets for abspos draggables. Fixes #9315 - ↵Mike Sherov2013-08-121-6/+16
| | | | Draggable: jumps down with offset of scrollbar
* Draggable: active element blurs when clicking on a draggable. Fixes #4261 - ↵Steven Luscher2013-06-191-0/+2
| | | | Draggable: Inputs do not blur when clicking on a draggable
* Clicking on a draggable anchor without moving it should make it the active ↵Steven Luscher2013-06-191-0/+3
| | | | element (Fixes #8399).
* Draggable: enabled draggable from within iframe. Fixed #5727 - draggable: ↵Brian Grinstead2013-05-201-6/+10
| | | | cannot drag element inside iframe
* Draggable: allow draggable to defer destroying itself upon DOM removal until ↵Mike Sherov2013-04-121-36/+43
| | | | after stop is fired. Fixes #6889 - Draggable: Cursor doesn't revert to pre-dragging state after revert action when original element is removed.
* Draggable: Don't cache parent offset if the parent position is fixed. Fixes ↵Mike Sherov2013-04-031-2/+7
| | | | #5009 - Draggable: scroll not working with parent's position fixed
* Draggable: Stop erroneously overriding scroll offsets for root nodes. Fixes ↵Mike Sherov2013-04-021-7/+6
| | | | #6258 - Draggable: not following mouse when scrolled and using overflow-y: scroll.
* Draggable: Handle containment set to false after init, and style ↵Mike Sherov2013-03-231-38/+55
| | | | improvements. Fixes #8962 - Containment doesn't properly update
* Widget tests: Use instance method. Also replace a few instances of $.data in ↵Jörn Zaefferer2013-03-191-1/+1
| | | | widget implementations.
* Widgets: Updating to use instance method on bridgeCorey Frang2013-03-191-14/+14
|
* Draggable: make sure snap elements are in the document before snapping. ↵Mike Sherov2013-03-161-11/+3
| | | | Fixes #8459 - Draggable: element can snap to an element that was removed during drag.
* Draggable: modified snapping algorithm to use edges and corners. Fixed #8165 ↵Zbigniew Motyka2013-03-161-2/+1
| | | | - Draggable: Snapping doesn't take top/left into account properly
* Draggable: Fix double offset bug when scrolling. Fixes #6817 - Draggable: ↵Woody Gilk2013-03-151-4/+17
| | | | auto scroll goes double distance when dragging
* Draggable: Account for descendants in handle.Scott González2013-03-081-11/+3
|
* Draggable: Fix border containment. Fixed #5569 - Draggable: Containment ↵TJ VanToll2013-03-071-2/+2
| | | | incorrectly calculates padding and border
* Draggable Tests: Add test coverage for supported optionsMike Sherov2013-03-041-8/+6
|
* Draggable: Revert flag honours Sortable revert speed. Fixed #9103 Draggable: ↵Steve Urmston2013-02-211-1/+1
| | | | revert option reset after being added to a connectedSortable.
* Removing unnecessary wrapping of this in draggable's stack option handling.TJ VanToll2013-02-121-4/+2
|
* Draggable: Account for z-index set in CSS for the stack option. Fixed #9077 ↵TJ VanToll2013-02-111-4/+3
| | | | - Draggable: stack option resets the z-index
* Draggable: Change $.ui.contains() to $.contains(). Fixes #9051 - Draggable: ↵Vahid Sohrabloo2013-02-021-1/+1
| | | | Reference to undefined $.ui.contains().
* Update copyright year to 2013.Scott González2013-01-101-1/+1
|
* Interactions: Update widget defaults to match documented API.Mike Sherov2013-01-021-1/+6
|
* All: Convert single quotes to double quotes.Mike Sherov2012-12-251-56/+56
|
* All: Use .addBack() instead of .andSelf().Scott González2012-12-141-1/+1
|
* Draggable: made handles work with complex markup. Fixes #8757 - Draggable: ↵mathias.stenbom2012-11-191-1/+1
| | | | Resizable handle with inner element does not work, when its also draggable
* Dev: make draggable pass JSHint with no local overridesMike Sherov2012-11-181-155/+269
|
* Updated all widgets to use proper data keys when getting plugin instances.Scott González2012-11-091-17/+17
|
* Dev: Standardized the draggable test suite. Fixed #8748 - Dev: Get draggable ↵Mike Sherov2012-10-301-24/+15
| | | | test suite to pass
* Remove trailing whitespace and add final newlinesTrey Hunner2012-10-211-20/+20
|
* Draggable: Fix a bug when dragging into nested sortables there are ↵John Chen2012-10-101-0/+16
| | | | duplicated placeholders. Fixes #7777 - Draggable and Nested Sortables bug.
* Remove use of $.browser; add $.ui.ie and $.ui.ie6 temporarily.Scott González2012-10-101-1/+1
|
* Updated docs URLS.Scott González2012-09-261-1/+1
|
* Draggable: Always clean up iframes. Fixes #8555 - Draggable: iframeFix ↵Jared A. Scheel2012-09-061-5/+4
| | | | option leaves iframes in DOM when using a selector.
* Simplify licensing.Scott González2012-08-091-1/+1
|
* Update copyright to jQuery Foundation.Scott González2012-07-041-1/+2
|
* Draggable: Remove workaround for Safari 3.Scott González2012-06-141-4/+4
|
* Draggable: Fixed destroy method.Scott González2012-05-241-10/+2
|
* Draggable: Apply ui-draggable-dragging class prior to calculating ↵Viktar Varvanovich2012-05-241-1/+3
| | | | dimensions. Fixes #8349 - Draggable: Incorrect dimensions used if .ui-draggable-dragging changes dimensions
* Draggable: Don't run stop methods for elements that have been removed. ↵TJ VanToll2012-04-301-2/+8
| | | | Fixed #8269 - Removing draggable element on drop : a(this).data("draggable") is undefined.
* Protect all copyright notices against minificationJo Liss2012-04-021-1/+1
| | | | | | | For instance, this is useful for the jquery-ui-rails gem, which does not use jQuery UI's own minification, but relies on Rails to minify the files where necessary. Rails in turn uses UglifyJS for JS and YUI for CSS, both of which respect the /*! ... */ convention.
* Updated copyright year.Scott González2012-03-081-1/+1
|