Source
/*!
* jQuery UI - v1.13.2 - 2023-11-15
*
* Builder URL: https://jqueryui.com/download/#!version=1.13.2&components=111110110101101110000000010000100000000000000000
* http://jqueryui.com
*
* Includes:
* widget.js,
* position.js,
* data.js,
* disable-selection.js,
* focusable.js,
* jquery-patch.js,
* keycode.js,
* scroll-parent.js,
* unique-id.js,
* widgets/draggable.js,
* widgets/resizable.js,
* widgets/selectable.js,
* widgets/sortable.js,
* widgets/mouse.js,
* widgets/tabs.js
*
* Copyright jQuery Foundation and other contributors; Licensed MIT
*/
( function( factory ) {
"use strict";
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
define( [ "jquery" ], factory );
} else {
// Browser globals
factory( jQuery );
}
} )( function( $ ) {
"use strict";
$.ui = $.ui || {};
var version = $.ui.version = "1.13.2";
/*!
* jQuery UI Widget 1.13.2
* http://jqueryui.com
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
*/
//>>label: Widget
//>>group: Core
//>>description: Provides a factory for creating stateful widgets with a common API.
//>>docs: http://api.jqueryui.com/jQuery.widget/
//>>demos: http://jqueryui.com/widget/
var widgetUuid = 0;
var widgetHasOwnProperty = Array.prototype.hasOwnProperty;
var widgetSlice = Array.prototype.slice;
$.cleanData = ( function( orig ) {
return function( elems ) {
var events, elem, i;
for ( i = 0; ( elem = elems[ i ] ) != null; i++ ) {
// Only trigger remove when necessary to save time
events = $._data( elem, "events" );
if ( events && events.remove ) {
$( elem ).triggerHandler( "remove" );
}
}
orig( elems );
};
} )( $.cleanData );
$.widget = function( name, base, prototype ) {
var existingConstructor, constructor, basePrototype;
// ProxiedPrototype allows the provided prototype to remain unmodified
// so that it can be used as a mixin for multiple widgets (#8876)
var proxiedPrototype = {};
var namespace = name.split( "." )[ 0 ];
name = name.split( "." )[ 1 ];
var fullName = namespace + "-" + name;