Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | All: Remove the deprecated `ui/core.js` file | Michał Gołębiowski-Owczarek | 2024-05-15 | 1 | -5/+0 |
| | | | | | | Also, fix checkboxradio visual tests. Ref gh-2249 | ||||
* | All: Drop support for IE & some other browsers (but mostly IE) | Michał Gołębiowski-Owczarek | 2024-05-15 | 3 | -11/+1 |
| | | | | Closes gh-2249 | ||||
* | Docs: Change a few most common domains from HTTP to HTTPS | Michał Gołębiowski-Owczarek | 2024-04-26 | 1 | -1/+1 |
| | | | | | Also, update a few stale URLs to what they redirect now to. Closes gh-2244 | ||||
* | Update custom_render.html (#2242) | mark van tilburg | 2024-04-25 | 13 | -23/+23 |
| | | | | | This fixes mixed content errors on the selectmenu demo page at jqueryui.com. Closes gh-2242 | ||||
* | Docs: remove a duplicated "be" in an accordion demo | divdeploy | 2024-04-12 | 1 | -1/+1 |
| | | | | | Closes gh-2233 Signed-off-by: divdeploy <chenguangxue@outlook.com> | ||||
* | demos: Replace search.php with $.ajaxTransport() mock | Timo Tijhof | 2024-01-03 | 9 | -611/+645 |
| | | | | Fixes jquery/jqueryui.com#203 Closes gh-2187 | ||||
* | Demos:Tests: Avoid self-closing HTML tags | Michał Gołębiowski-Owczarek | 2023-05-10 | 17 | -24/+24 |
| | | | | | | | | | Self-closing tags are reported by newer versions of the htmllint Grunt plugin. They also don't make sense in our HTML files since they are not XHTML-compliant and they run in HTML mode anyway. Ref gh-2157 | ||||
* | Demos: Optimize PNG files | Дилян Палаузов | 2022-12-20 | 2 | -0/+0 |
| | | | | | | | Optimization done by calling: for i in `find -name '*.png'`; do optipng -o7 -zm9 $i; done Closes gh-2132 | ||||
* | Demos: Better wording for the purposefully broken tab | DeerBear | 2022-12-06 | 1 | -2/+2 |
| | | | | | Fix both grammar and punctuation in one tabs demo. Closes gh-2139 | ||||
* | All: Remove deprecated .click() usage in demos/tests | Michał Gołębiowski-Owczarek | 2022-07-14 | 2 | -2/+2 |
| | |||||
* | Build: Migrate from JSHint & JSCS to ESLint | Michał Gołębiowski-Owczarek | 2021-06-07 | 2 | -0/+6 |
| | | | | | Fixes #15393 Closes gh-1958 | ||||
* | All: Resolve most jQuery Migrate warnings | Michał Gołębiowski-Owczarek | 2020-05-16 | 1 | -1/+1 |
| | | | Closes gh-1919 | ||||
* | All: Remove usage of jQuery positional selectors | Michał Gołębiowski-Owczarek | 2020-01-22 | 1 | -12/+12 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | Sortable: Remove reference to .disableSelection() from demos | Gez Quinn | 2019-12-09 | 1 | -1/+0 |
| | | | | | | `.disableSelection()` was deprecated in v1.9: http://api.jqueryui.com/disableSelection/ Closes gh-1856 | ||||
* | All: Migrate away from deprecated/removed Core APIs | Michał Gołębiowski-Owczarek | 2019-12-08 | 2 | -2/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | All: Remove uses of `jQuery.proxy()` | Scott González | 2017-05-17 | 1 | -1/+1 |
| | | | | | Ref #15160 Closes gh-1813 | ||||
* | Demos: Fix a typo with an extra semicolon | Robert Brignull | 2017-05-10 | 1 | -1/+1 |
| | | | | Closes gh-1812 | ||||
* | Themes: Optimize PNG files with zopflipng | Jo Liss | 2016-11-29 | 1 | -0/+0 |
| | | | | Closes gh-1772 | ||||
* | Tabs: Don't blur focused tab on sort | Scott González | 2016-10-12 | 1 | -1/+12 |
| | | | | | Fixes #14627 Closes gh-1761 | ||||
* | Autocomplete: Escape HTML tags in callback name to avoid XSS in demo | Scott González | 2016-09-22 | 1 | -1/+4 |
| | | | | Fixes #15048 | ||||
* | Slider: Add demo for custom handle | Scott González | 2016-09-13 | 2 | -0/+43 |
| | | | | | Fixes #15023 Closes gh-1740 | ||||
* | Autocomplete: Remove unreachable code in remote demo | Scott González | 2016-09-01 | 1 | -3/+1 |
| | |||||
* | Autocomplete: Change JSONP demo to use local data source | Scott González | 2016-09-01 | 2 | -17/+19 |
| | | | | Fixes #14974 | ||||
* | Demos: Optimize *.png with zopflipng | Ville Skyttä | 2016-08-24 | 3 | -0/+0 |
| | | | | | | zopflipng -m, version 1.0.1. Closes gh-1726 | ||||
* | All: Replace non-breaking spaces with regular spaces | Scott González | 2016-06-08 | 2 | -2/+2 |
| | |||||
* | All: Optimize png images losslessly using zopflipng | Peter Dave Hello | 2016-06-06 | 12 | -0/+0 |
| | | | | Closes gh-1710 | ||||
* | Controlgroup: Fix rendering of labels | Alexander Schmitz | 2016-05-26 | 1 | -1/+1 |
| | | | | | Fixes #14967 Closes gh-1703 | ||||
* | Selectmenu: Added missing semicolon | Anne-Gaelle Colom | 2016-03-30 | 1 | -1/+1 |
| | | | | Closes gh-1689 | ||||
* | Controlgroup: Fix quote style in demo | Scott González | 2016-02-16 | 1 | -1/+1 |
| | |||||
* | Draggable: Change element ids in demo | Scott González | 2015-11-09 | 1 | -2/+2 |
| | |||||
* | Demos: Link widget demo to learn site | Jörn Zaefferer | 2015-10-30 | 1 | -0/+1 |
| | | | | | Ref jquery/jqueryui.com#39 Closes gh-1637 | ||||
* | Demos: Replace with ffb33daa229c62c7095cff39cde034f84ef54b15 | Jörn Zaefferer | 2015-10-08 | 1 | -1/+1 |
| | |||||
* | Controlgroup: Update toolbar demo to warn about "this is just a demo" | Jörn Zaefferer | 2015-10-08 | 1 | -2/+3 |
| | |||||
* | Controlgroup: Address review comments | Alexander Schmitz | 2015-10-08 | 1 | -9/+10 |
| | |||||
* | Checkboxradio: Address review comments | Alexander Schmitz | 2015-10-08 | 3 | -27/+42 |
| | |||||
* | Button: address review comments | Alexander Schmitz | 2015-10-08 | 1 | -7/+7 |
| | |||||
* | Controlgroup: Fixes for spinner | Alexander Schmitz | 2015-10-08 | 1 | -2/+0 |
| | |||||
* | Controlgroup: fixup for spinner and label | Alexander Schmitz | 2015-10-08 | 1 | -2/+4 |
| | |||||
* | Controlgroup: Add controlgroup labels | Alexander Schmitz | 2015-10-08 | 2 | -228/+256 |
| | |||||
* | Controlgroup: Add spinner to widgets controlgroup works with | Alexander Schmitz | 2015-10-08 | 1 | -1/+4 |
| | |||||
* | Controlgroup: Fix headers and demos | Alexander Schmitz | 2015-10-08 | 3 | -25/+37 |
| | |||||
* | Controlgroup: Add missing entry to demos bootstrap | Alexander Schmitz | 2015-10-08 | 3 | -36/+6 |
| | |||||
* | Controlgroup: add demos to bootstrap | Alexander Schmitz | 2015-10-08 | 1 | -0/+1 |
| | |||||
* | Demos: Add checkboxradio to bootstrap | Alexander Schmitz | 2015-10-08 | 1 | -0/+1 |
| | |||||
* | Checkboxxradio: Adjust demo headers | Alexander Schmitz | 2015-10-08 | 2 | -2/+2 |
| | |||||
* | Spinner: Updates for new button widget and classes option | Alexander Schmitz | 2015-10-08 | 8 | -230/+12 |
| | |||||
* | Controlgroup: Inital commit of new widget | Alexander Schmitz | 2015-10-07 | 7 | -101/+97 |
| | | | | This widget replaces the buttonset widget | ||||
* | Checkboxradio: Initial commit of new widget | Alexander Schmitz | 2015-10-07 | 15 | -0/+746 |
| | |||||
* | Button: Initial commit of button re-factor | Alexander Schmitz | 2015-10-07 | 5 | -114/+67 |
| | | | | | | Move to using element stats rather then js class states remove ui-button-text spans. Removed button set | ||||
* | Tests: Use demo bootstrap for visual tests | Jörn Zaefferer | 2015-09-30 | 1 | -5/+14 |
| | | | | | | Adds a data-composite option and fixes paths for effects. Otherwise just applies the same conversion as already applied to demos, sometimes moving a <style> element to the right place. |