jquery-ui/ui/core.js
Michał Gołębiowski-Owczarek 5fa0db48d7
Core: Fix dependencies in ui/core.js
The `jquery-patch` reference was included with the `.js` extension which is
not allowed in AMD.

Fixes gh-2107
Closes gh-2109
2022-08-18 13:28:26 +02:00

24 lines
358 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",
"./form",
"./ie",
"./keycode",
"./labels",
"./jquery-patch",
"./plugin",
"./safe-active-element",
"./safe-blur",
"./scroll-parent",
"./tabbable",
"./unique-id",
"./version"
] );
} )();