mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
9887579b61
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
19 lines
277 B
JavaScript
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"
|
|
] );
|
|
} )();
|