2009-11-13 04:00:12 +00:00
|
|
|
/*!
|
2012-07-04 13:08:08 +00:00
|
|
|
* jQuery UI Core @VERSION
|
|
|
|
* http://jqueryui.com
|
2008-06-04 02:34:33 +00:00
|
|
|
*
|
2014-12-21 18:27:43 +00:00
|
|
|
* Copyright jQuery Foundation and other contributors
|
2012-08-09 14:13:24 +00:00
|
|
|
* Released under the MIT license.
|
2010-07-09 13:01:04 +00:00
|
|
|
* http://jquery.org/license
|
2008-06-04 02:34:33 +00:00
|
|
|
*
|
|
|
|
*/
|
2014-10-30 19:55:08 +00:00
|
|
|
|
|
|
|
//>>label: Core
|
|
|
|
//>>group: UI Core
|
|
|
|
//>>description: The core of jQuery UI, required for all interactions and widgets.
|
|
|
|
//>>docs: http://api.jqueryui.com/category/ui-core/
|
|
|
|
|
2015-07-16 00:30:36 +00:00
|
|
|
// This file is deprecated in 1.12.0 to be removed in 1.13
|
|
|
|
( function() {
|
|
|
|
define( [
|
|
|
|
"jquery",
|
|
|
|
"./data",
|
|
|
|
"./disable-selection",
|
|
|
|
"./focusable",
|
|
|
|
"./form",
|
|
|
|
"./ie",
|
|
|
|
"./keycode",
|
|
|
|
"./labels",
|
|
|
|
"./jquery-1-7",
|
|
|
|
"./plugin",
|
|
|
|
"./safe-active-element",
|
|
|
|
"./safe-blur",
|
|
|
|
"./scroll-parent",
|
|
|
|
"./tabbable",
|
|
|
|
"./unique-id",
|
|
|
|
"./version"
|
|
|
|
] );
|
|
|
|
} )();
|