aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery-1-7.js
Commit message (Collapse)AuthorAgeFilesLines
* Build: Rename jquery-1-7 to jquery-patchMichał Gołębiowski-Owczarek2020-05-161-118/+0
| | | | | The file now contains many more than just jQuery 1.7 patches. Closes gh-1917
* All: Remove usage of jQuery positional selectorsMichał Gołębiowski-Owczarek2020-01-221-0/+17
| | | | | | | | | | | | | | | | | jQuery positional selectors () have been deprecated in [jQuery 3.4.0](https://blog.jquery.com/2019/04/10/jquery-3-4-0-released/) and they'll be removed in jQuery 4.0.0. This PR removes their usage. Most of the changes were possible without changing public API. However, dropping `:even` usage required a change to the [`header` option](https://api.jqueryui.com/accordion/#option-header) of the accordion widget. I made it an optional function; this will need to be documented. The polyfill for `.even()` & `.odd()` is added for jQuery <3.5.0. There was no usage of the :odd selector in the code but the `.odd()` method is also polyfilled for completeness. Closes gh-1904
* Core: Fix JQMIGRATE warning about `jQuery.expr[":"]`Eirik Sletteberg2017-05-021-1/+13
| | | | | | | This commit polyfills `jQuery.expr.pseudos` for old versions of jQuery. Fixes #15185 Closes gh-1773
* All: Fix manifest issues for categories and CSS dependenciesJörn Zaefferer2015-10-231-1/+1
| | | | | | | Collapses "UI Core" and "Core" into just "Core". Fixes bad paths for CSS dependencies. Regressed when moving widgets into the widgets subfolder.
* Core: Style updatesAlexander Schmitz2015-08-211-1/+1
| | | | | Ref #14246 Ref gh-1588
* Core: Move backcompat for core 1.7 into its own moduleAlexander Schmitz2015-08-081-0/+89
Ref #9647