mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
0c860b0d92
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
35 lines
693 B
JavaScript
35 lines
693 B
JavaScript
define( [
|
|
"lib/common",
|
|
"ui/widgets/accordion"
|
|
], function( common ) {
|
|
|
|
common.testWidget( "accordion", {
|
|
defaults: {
|
|
active: 0,
|
|
animate: {},
|
|
classes: {
|
|
"ui-accordion-header": "ui-corner-top",
|
|
"ui-accordion-header-collapsed": "ui-corner-all",
|
|
"ui-accordion-content": "ui-corner-bottom"
|
|
},
|
|
collapsible: false,
|
|
disabled: false,
|
|
event: "click",
|
|
header: function( elem ) {
|
|
return elem.find( "> li > :first-child" ).add( elem.find( "> :not(li)" ).even() );
|
|
},
|
|
heightStyle: "auto",
|
|
icons: {
|
|
"activeHeader": "ui-icon-triangle-1-s",
|
|
"header": "ui-icon-triangle-1-e"
|
|
},
|
|
|
|
// Callbacks
|
|
activate: null,
|
|
beforeActivate: null,
|
|
create: null
|
|
}
|
|
} );
|
|
|
|
} );
|