Sha256: 2abaaa492ddd17e40e54f3bd3696f0ea86cb155761ef7ec6d082b6b8b26f8553

Contents?: true

Size: 1.67 KB

Versions: 23

Compression:

Stored size: 1.67 KB

Contents

/*!
 * jQuery UI Labels 1.12.0
 * 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 ) {
	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
		define( [ "jquery", "./version", "./escape-selector" ], factory );
	} else {

		// Browser globals
		factory( jQuery );
	}
} ( function( $ ) {

return $.fn.labels = function() {
	var ancestor, selector, id, labels, ancestors;

	// 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='" + $.ui.escapeSelector( id ) + "']";

		labels = labels.add( ancestors.find( selector ).addBack( selector ) );

	}

	// Return whatever we have found for labels
	return this.pushStack( labels );
};

} ) );

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
trusty-cms-3.1.6 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.1.5 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.1.3 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.1.2 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.11 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.1.1 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.10 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.1.0 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.9 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.8 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.7 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-2.0.28 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.6 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-2.0.27 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.4 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.3 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.2 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.1 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-3.0.0 app/assets/bower_components/jquery-ui/ui/labels.js
trusty-cms-2.0.26 app/assets/bower_components/jquery-ui/ui/labels.js