aboutsummaryrefslogtreecommitdiffstats
path: root/ui/widgets/resizable.js
Commit message (Collapse)AuthorAgeFilesLines
* Docs: Change a few most common domains from HTTP to HTTPSMichał Gołębiowski-Owczarek2024-04-261-4/+4
| | | | | Also, update a few stale URLs to what they redirect now to. Closes gh-2244
* Resizable: Fix resizing of elems with `box-sizing: border-box`Matías Cánepa2022-10-101-3/+6
| | | | Fixes gh-1979 Closes gh-2012
* All: Update JS Foundation mentions to OpenJS FoundationMichał Gołębiowski-Owczarek2022-07-191-1/+1
| | | Closes gh-2104
* Build: Migrate from JSHint & JSCS to ESLintMichał Gołębiowski-Owczarek2021-06-071-8/+19
| | | | | Fixes #15393 Closes gh-1958
* Resizable: Fix CSP violation (style unsafe-inline)Jérémy Munsch2020-08-111-2/+3
|
* All: Migrate away from deprecated/removed Core APIsMichał Gołębiowski-Owczarek2019-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Resizable: Keep user-provided handles on destroyKonstantin Dinev2017-04-171-3/+2
| | | | | Closes gh-1798 Ref gh-1795
* Resizable: Keep user defined handles on _setOptionKonstantin Dinev2017-02-241-2/+6
| | | | | Fixes #15084 Closes gh-1795
* Resizable: Fix aspectRatio cannot be changed after initialization.Sergei Ratnikov2016-09-281-0/+3
| | | | | Fixes #4186 Closes gh-1750
* Resizable: Fix line length issuesAlexander Schmitz2016-04-131-5/+14
| | | | Ref gh-1690
* Resizable: Implement `setOption` for handlesKonstantin Dinev2016-03-301-54/+79
| | | | | Fixes #3423 Closes gh-1666
* Resizable: Fix top jump with rotated elementFrancesc Baeta2016-03-301-1/+1
| | | | | | | | | | Fix top jump when resizing a rotated element (90°) using north handle and exceeding the minmal height (default 10px). Bug was found using a resizable-rotation-patch: https://github.com/unlocomqx/jQuery-ui-resizable-rotation-patch Closes gh-1687
* Resizable: Fix data reference for `ui-resizable-alsoresize`Scott González2015-11-091-1/+1
| | | | Fixes #14788
* Resizable: Don't use CSS shorthand properties with `.css()`Scott González2015-11-051-12/+9
| | | | | Fixes #7766 Closes gh-1644
* All: Fix manifest issues for categories and CSS dependenciesJörn Zaefferer2015-10-231-3/+3
| | | | | | | Collapses "UI Core" and "Core" into just "Core". Fixes bad paths for CSS dependencies. Regressed when moving widgets into the widgets subfolder.
* Resizable: Remove mysterious helper dimension adjustmentsScott González2015-10-161-2/+2
| | | | | Fixes #11113 Closes gh-1615
* Resizable: Don't round dimensionsScott González2015-09-171-14/+14
|
* Resizable: Style updatesAlexander Schmitz2015-09-111-283/+285
| | | | Ref #14246
* Resizable: Style updatesAlexander Schmitz2015-08-211-3/+3
| | | | | Ref #14246 Ref gh-1588
* Resizable: Move resizable into widgets folderAlexander Schmitz2015-08-081-0/+1168
Ref #13885