aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/draggable
Commit message (Collapse)AuthorAgeFilesLines
* Draggable: Shift to use no globalsAmanpreet Singh2016-04-146-418/+427
|
* Draggable: Improve detection for when to blur the active elementScott González2016-02-091-1/+21
| | | | | | Fixes #12472 Fixes #14905 Closes gh-1548
* Draggable: Skip window bubbling test in IE 8Scott González2015-10-271-14/+20
| | | | | | | | | IE 8 implements DOM Level 2 Events which only has events propagate up to the document, not the window. Ref #10818 Ref gh-1621 Closes gh-1627
* Draggable: Fix options testsJörn Zaefferer2015-10-252-12/+14
| | | | | | | | These failed when running through tests/unit/all.html, due to the smaller iframe. Reducing a browser window enough triggered the same issue. Making the top offset much smaller fixes that. The rest is fixing bad indent and adds a missing module call.
* Mouse: Don't stop propagation of mouseupHannah Methvin2015-10-181-0/+17
| | | | Fixes #10818
* Draggable: Style updatesAlexander Schmitz2015-09-116-367/+378
| | | | Ref #14246
* Draggable: Style updatesAlexander Schmitz2015-08-213-13/+13
| | | | | Ref #14246 Ref gh-1588
* Sortable: Move sortable into widgets folderAlexander Schmitz2015-08-081-1/+1
| | | | Ref #13885
* Resizable: Move resizable into widgets folderAlexander Schmitz2015-08-081-1/+1
| | | | Ref #13885
* Droppable: Move droppable into widgets folderAlexander Schmitz2015-08-082-2/+2
| | | | Ref #13885
* Draggable: Move draggable into widgets folderAlexander Schmitz2015-08-086-6/+6
| | | | Ref #13885
* Draggable: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-202-5/+5
|
* Tests: Fix AMD loading in IE8Scott González2015-04-171-0/+1
| | | | | It appears that we must load require.js via a standard script tag in order for it to work properly in IE8.
* Tests: Rename filesScott González2015-04-096-3/+3
| | | | Ref gh-1528
* Tests: Widget test helpers extend the main helperScott González2015-04-094-153/+172
| | | | | Ref #10119 Ref gh-1528
* Draggable: Convert tests to new infrastructureScott González2015-04-097-252/+245
| | | | | Ref #10119 Ref gh-1528
* Tests: Convert closeEnough() to a proper QUnit assertionScott González2015-04-092-17/+17
| | | | | | | Should eventually replace with qunit-assert-close. Ref #10119 Ref gh-1528
* Revert "Draggable: Set explicit width/height instead of right/bottom"TJ VanToll2015-04-082-35/+2
| | | | | | This reverts commit 8eca7b8f45885d20c13f1bf64cad8bee5fc1d5c5. Fixes #10725
* Tests: Switch to the new qunit-composite moduleScott González2015-04-071-2/+2
| | | | | | This module was created from our existing implementation. Closes gh-1532
* All: Standard spacing inside selector stringsScott González2015-03-261-1/+1
| | | | Closes gh-1521
* Draggable: Use new has/lacksClasses assertions for all class checksAlexander Schmitz2015-03-113-15/+15
|
* Widget: Add classes option and _add/_remove/_toggleClass methodsAlexander Schmitz2015-03-111-0/+1
| | | | | Fixes #7053 Closes gh-1411
* Draggable: Ensure parent is correct after dragging through sortableMike Sherov2014-11-081-0/+23
| | | | Fixes #10669
* Draggable: Add battery of tests to cover connectToSortableMike Sherov2014-08-262-28/+107
| | | | | | Refs #9481 Refs #9675 Closes gh-1323
* Sortable: cancelHelperRemoval only considers helper, not placeholderMike Sherov2014-08-261-1/+1
| | | | Refs #9675
* Draggable: append divs to iframe parent for iframefixMike Sherov2014-08-241-0/+42
| | | | | | | This allows the blocking div to move with the iframe in most situations, whereas appending to the body wouldn't. Fixes #9671
* Draggable: Check all parents for fixed positioning when scrollingMike Sherov2014-08-231-12/+20
| | | | Fixes #9612
* Draggable: No cloning in connectToSortable and ensure correct positionMike Sherov2014-08-232-1/+105
| | | | | | | | | | | Draggables now forcefully recalculate their position when dragged out of a sortable. Sortables now override draggable position when a draggable is dragged into it. Lastly, no longer remove sortable helper when dragging a draggable out, which allows us to not use a clone. Fixes #7734 Fixes #8809 Closes gh-1322
* Draggable Tests: Ensure scrolling and dragging tests assert correctlyDave Stein2014-08-224-12/+27
|
* Build: Pull in jquery.simulate.js from BowerMike Sherov2014-08-221-1/+1
| | | | Fixes #10563
* Draggable Tests: Fix failures due to fractional widthsMike Sherov2014-08-201-2/+2
|
* Mouse: Only detect out of document mouseups after a mousemoveMike Sherov2014-08-201-0/+17
| | | | | | | | This prevents the firing of mouseup in the case of IE<9, which will fire a mousemove event if content is placed under the cursor on mousedown. Fixes #7778
* Draggable: Ensure helper is positioned even if its the element itselfMike Sherov2014-08-191-0/+19
| | | | Fixes #9446
* Draggable: Set explicit width/height instead of right/bottom css.Uri Gilad2014-08-182-2/+34
| | | | Fixes #7772
* Draggable: Ensure overflow:visible containments are correctly measuredMike Sherov2014-08-171-0/+30
| | | | Fixes #7016
* Draggable: Only focus the draggable if the event occurs on a handleMike Sherov2014-08-171-7/+15
| | | | Refs #10527
* Draggable: Recalculate hash offset on start after plugins runMike Sherov2014-08-161-0/+39
| | | | Fixes #6884
* Draggable Tests: Clarify position helper test generationMike Sherov2014-08-141-43/+44
|
* Draggable: Account for margins when snappingMike Sherov2014-08-141-0/+4
| | | | Fixes #9724
* Draggable Tests: Fix IE8 test when native scroll happensMike Sherov2014-08-131-3/+22
|
* Draggable: ignore overflow:hidden containers with scroll optionMike Sherov2014-08-121-0/+14
| | | | | | While it is true that overflow:hidden elements can be scrolled programatically, this breaks user expectation. Therefore, do not scroll inside an overflow:hidden container.
* Draggable: consider offsets from overflow:hidden parentsMike Sherov2014-08-122-31/+37
| | | | | | | | Developers can programmatically set scrollTop/Left on draggable containers that are overflow:hidden. They must be considered for positioning. Fixes #10147
* Draggable Tests: Fix several whitespace issues.Mike Sherov2014-08-122-3/+2
|
* Draggable Tests: Fix inconsistent operator spacing.Mike Sherov2014-08-061-4/+4
|
* Tests: Fix composite testsScott González2014-08-011-1/+1
|
* Draggable: Manage ui-draggable-handle correctly in nested instancesTJ VanToll2014-07-151-0/+13
|
* Draggable: Only apply ui-draggable-handle within the draggable instanceTJ VanToll2014-07-151-2/+6
| | | | | Fixes #10212 Closes gh-1284
* Build: Reorganize external directoryScott González2014-06-242-4/+4
| | | | | | | Put each external library into its own directory. Move jquery.js to external. Ref gh-1266
* All: Rename jquery.js to exclude version in filenameJörn Zaefferer2014-03-051-1/+1
|
* Tests: Update to sane QUnit markupJörn Zaefferer2014-02-202-10/+2
|