jquery-ui/ui/core.js
Michał Gołębiowski-Owczarek 9887579b61
All: Stop relying on jquery-patch.js internally, add tests
Avoid relying on jQuery patches. Instead:
* use `CSS.escape` instead of `jQuery.escapeSelector`
* use `.filter()` with a proper handler instead of `.even()`

Keep `jquery-patch.js` for backwards compatibility, though.

Also, add tests for jquery-patch.

Ref gh-2249
2024-05-15 00:38:40 +02:00

19 lines
277 B
JavaScript

// This file is deprecated in 1.12.0 to be removed in 1.14
( function() {
"use strict";
define( [
"jquery",
"./data",
"./disable-selection",
"./focusable",
"./keycode",
"./labels",
"./plugin",
"./scroll-parent",
"./tabbable",
"./unique-id",
"./version"
] );
} )();