/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/labels.js (1775B)
/*! * jQuery UI Labels 1.13.1 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license */ //>>label: labels //>>group: Core //>>description: Find all the labels associated with a given input //>>docs: http://api.jqueryui.com/labels/ ( 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"; return $.fn.labels = function() { var ancestor, selector, id, labels, ancestors; if ( !this.length ) { return this.pushStack( [] ); } // Check control.labels first if ( this[ 0 ].labels && this[ 0 ].labels.length ) { return this.pushStack( this[ 0 ].labels ); } // Support: IE <= 11, FF <= 37, Android <= 2.3 only // Above browsers do not support control.labels. Everything below is to support them // as well as document fragments. control.labels does not work on document fragments labels = this.eq( 0 ).parents( "label" ); // Look for the label based on the id id = this.attr( "id" ); if ( id ) { // We don't search against the document in case the element // is disconnected from the DOM ancestor = this.eq( 0 ).parents().last(); // Get a full set of top level ancestors ancestors = ancestor.add( ancestor.length ? ancestor.siblings() : this.siblings() ); // Create a selector for the label based on the id selector = "label[for='" + $.escapeSelector( id ) + "']"; labels = labels.add( ancestors.find( selector ).addBack( selector ) ); } // Return whatever we have found for labels return this.pushStack( labels ); }; } );