aboutsummaryrefslogtreecommitdiffstats
path: root/ui/widgets/droppable.js
Commit message (Collapse)AuthorAgeFilesLines
* 1.13.01.13.0Michał Gołębiowski-Owczarek2021-10-071-2/+2
|
* Docs: Update removal comments to mention 1.14, not 1.13Michał Gołębiowski-Owczarek2021-08-261-1/+1
| | | | | | | | | We're not removing any deprecated API or legacy browser support in 1.13, re-target comments to mention 1.14. It's not guaranteed 1.14 will ever get released but if it will, it sounds like a good moment to do those removals. Closes gh-1970
* Build: Migrate from JSHint & JSCS to ESLintMichał Gołębiowski-Owczarek2021-06-071-4/+10
| | | | | Fixes #15393 Closes gh-1958
* All: Migrate away from deprecated/removed Core APIsMichał Gołębiowski-Owczarek2019-12-081-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary of the changes: * Build: Add jQuery 3.2.0-3.4.1 to versions UI can be tested against * Build: Load jQuery & Migrate via HTTPS * Build: Add package-lock.json to .gitignore * Build: Update jQuery Migrate from 3.0.0 to 3.1.0 * Build: Allow to run tests against jQuery 3.x-git * Build: Fix formatting according to JSCS rules * Build: Disable JSCS for the inlined jQuery Color * All: Switch from $.isArray to Array.isArray (jQuery.isArray will be removed in jQuery 4.0) * All: Switch from `$.isFunction( x )` to `typeof x === "function"` (jQuery.isFunction will be removed in jQuery 4.0) * All: Inline jQuery.isWindow as it'll be removed in jQuery 4.0 * Effects: Fix a timing issue in a variable declaration. Previously, a jQuery object was created, chained & assigned to a variable that was then accessed in a callback used inside of this chained definition. Due to a timing difference in when the callback fired for the first time in latest jQuery master, it was being called before the variable was defined. * Tests: Make dialog & draggable unit tests less strict (newest jQuery returns fractional results in some cases, making comparisons fail when there's a tiny difference) * All: Migrate from $.trim to bare String.prototype.trim (jQuery.trim will be deprecated in jQuery 3.5) Closes gh-1901
* Droppable: Use `$.ui.intersect()`Evelyn Masso2016-10-031-4/+4
| | | | Fixes #14963
* Droppable: Re-expose `$.ui.intersect()`Scott González2016-05-041-1/+1
| | | | | Fixes #14963 Ref #10534
* Droppable: Fix line length issuesAlexander Schmitz2016-04-131-27/+58
| | | | Ref gh-1690
* Droppable: Style updatesAlexander Schmitz2015-09-111-20/+27
| | | | Ref #14246
* Droppable: Style updatesAlexander Schmitz2015-08-211-3/+3
| | | | | Ref #14246 Ref gh-1588
* Mouse: Move mouse into widgets folderAlexander Schmitz2015-08-081-1/+1
| | | | Ref #13885
* Droppable: Move droppable into widgets folderAlexander Schmitz2015-08-081-0/+459
Ref #13885