/usr/share/javascript/jquery-ui/ui
NameSizeModeActions
effects/-0755rm
i18n/-0755rm
vendor/-0755rm
widgets/-0755rm
core.js3610644editdlrm
core.min.js2570644editdlrm
data.js9340644editdlrm
data.min.js3600644editdlrm
disable-selection.js10790644editdlrm
disable-selection.min.js4610644editdlrm
effect.js246120644editdlrm
effect.min.js140410644editdlrm
focusable.js22950644editdlrm
focusable.min.js11070644editdlrm
form-reset-mixin.js18270644editdlrm
form-reset-mixin.min.js9590644editdlrm
form.js5810644editdlrm
form.min.js2560644editdlrm
ie.js3850644editdlrm
ie.min.js2240644editdlrm
jquery-patch.js21680644editdlrm
jquery-patch.min.js7250644editdlrm
jquery-var-for-color.js5300644editdlrm
jquery-var-for-color.min.js1410644editdlrm
keycode.js8200644editdlrm
keycode.min.js3220644editdlrm
labels.js17750644editdlrm
labels.min.js5860644editdlrm
plugin.js10200644editdlrm
plugin.min.js6170644editdlrm
position.js151250644editdlrm
position.min.js96940644editdlrm
safe-active-element.js10140644editdlrm
safe-active-element.min.js4060644editdlrm
safe-blur.js5230644editdlrm
safe-blur.min.js2700644editdlrm
scroll-parent.js12800644editdlrm
scroll-parent.min.js6740644editdlrm
tabbable.js8830644editdlrm
tabbable.min.js3670644editdlrm
unique-id.js9760644editdlrm
unique-id.min.js3910644editdlrm
version.js3220644editdlrm
version.min.js1840644editdlrm
widget.js202830644editdlrm
widget.min.js118850644editdlrm
Edit: /usr/share/javascript/jquery-ui/ui/jquery-patch.js (2168B)
/*! * jQuery UI Support for jQuery core 1.8.x and newer 1.13.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * */ //>>label: jQuery 1.8+ Support //>>group: Core //>>description: Support version 1.8.x and newer of jQuery core ( function( factory ) { "use strict"; if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define( [ "jquery", "./version" ], factory ); } else { // Browser globals factory( jQuery ); } } )( function( $ ) { "use strict"; // Support: jQuery 1.9.x or older // $.expr[ ":" ] is deprecated. if ( !$.expr.pseudos ) { $.expr.pseudos = $.expr[ ":" ]; } // Support: jQuery 1.11.x or older // $.unique has been renamed to $.uniqueSort if ( !$.uniqueSort ) { $.uniqueSort = $.unique; } // Support: jQuery 2.2.x or older. // This method has been defined in jQuery 3.0.0. // Code from https://github.com/jquery/jquery/blob/e539bac79e666bba95bba86d690b4e609dca2286/src/selector/escapeSelector.js if ( !$.escapeSelector ) { // CSS string/identifier serialization // https://drafts.csswg.org/cssom/#common-serializing-idioms var rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g; var fcssescape = function( ch, asCodePoint ) { if ( asCodePoint ) { // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER if ( ch === "\0" ) { return "\uFFFD"; } // Control characters and (dependent upon position) numbers get escaped as code points return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; } // Other potentially-special ASCII characters get backslash-escaped return "\\" + ch; }; $.escapeSelector = function( sel ) { return ( sel + "" ).replace( rcssescape, fcssescape ); }; } // Support: jQuery 3.4.x or older // These methods have been defined in jQuery 3.5.0. if ( !$.fn.even || !$.fn.odd ) { $.fn.extend( { even: function() { return this.filter( function( i ) { return i % 2 === 0; } ); }, odd: function() { return this.filter( function( i ) { return i % 2 === 1; } ); } } ); } } );