| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
| |
When the datepicker UI is shown and then destroyed programmatically:
```js
$( "#datepicker" ).datepicker( "destroy" );
```
hide the datepicker UI without the need for an explicit user action.
Previously, in 1.12 the UI would not disappear immediately but only after the
first `mousedown`. In later 1.13 versions, the UI would not disappear at all.
Fixes gh-2178
Closes gh-2268
|
|
|
|
|
|
| |
Also, remove the ability to run the test suite in jQuery <1.12.4 & <2.2.4.
Closes gh-2249
|
|
|
|
|
| |
Also, update a few stale URLs to what they redirect now to.
Closes gh-2244
|
|
|
| |
Closes gh-2104
|
|
|
|
|
| |
This makes datepicker work fine even if translation software modifies texts on the page.
Closes gh-1943
|
|
|
|
|
| |
Fixes #15393
Closes gh-1958
|
|
|
|
|
|
| |
Add a new option named onUpdateDatepicker that allows a custom callback
to be provided. If provided, the callback is called at the end of
$.datepicker._updateDatepicker.
|
| |
|
|
|
|
|
|
|
|
| |
Instead of using enormous HTML strings, various elements are now constructed
using jQuery APIs. This makes it more obvious user-provided data is used
correctly.
Fixes #15284
Closes gh-1953
|
|
|
| |
Closes gh-1954
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
See:
https://github.com/jquery/jquery-migrate/blob/master/warnings.md#jqmigrate-jqueryexprfilters-is-deprecated-use-jqueryexprpseudos
Closes gh-1887
|
|
|
|
|
| |
Fixes #15102
Closes gh-1784
|
|
|
|
|
|
| |
There are too many errors and re-write is essentially done
Ref gh-1690
|
|
|
|
|
| |
Fixes #7956
Closes gh-1677
|
|
|
|
|
| |
Fixes #14920
Closes gh-1678
|
|
|
|
| |
Closes gh-1647
|
|
|
|
|
|
|
| |
Collapses "UI Core" and "Core" into just "Core".
Fixes bad paths for CSS dependencies. Regressed when moving widgets
into the widgets subfolder.
|
| |
|
|
|
|
| |
Ref #14246
|
|
|
|
| |
Fixes #14416
|
|
|
|
|
| |
Ref #14246
Ref gh-1588
|
|
Ref #13885
|