mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-12-07 06:14:24 +00:00
Controlgroup: Convert to onevar, fix guard-clause/else, rm tmp var
This commit is contained in:
parent
b61a3c74a9
commit
6ed30a6a5e
@ -69,13 +69,15 @@ return $.widget( "ui.controlgroup", {
|
|||||||
|
|
||||||
// First we iterate over each of the items options
|
// First we iterate over each of the items options
|
||||||
$.each( this.options.items, function( widget, selector ) {
|
$.each( this.options.items, function( widget, selector ) {
|
||||||
var widgets, labels,
|
var labels;
|
||||||
options = {};
|
var options = {};
|
||||||
|
|
||||||
// Make sure the widget actually exists and has a selector set
|
// Make sure the widget actually exists and has a selector set
|
||||||
if ( !$.fn[ widget ] || !selector ) {
|
if ( !$.fn[ widget ] || !selector ) {
|
||||||
return;
|
return;
|
||||||
} else if ( selector && widget === "controlgroupLabel" ) {
|
}
|
||||||
|
|
||||||
|
if ( widget === "controlgroupLabel" ) {
|
||||||
labels = that.element.find( selector );
|
labels = that.element.find( selector );
|
||||||
labels.each( function() {
|
labels.each( function() {
|
||||||
$( this ).contents().wrapAll( "<span class='ui-controlgroup-label-contents'></span>" );
|
$( this ).contents().wrapAll( "<span class='ui-controlgroup-label-contents'></span>" );
|
||||||
@ -92,9 +94,9 @@ return $.widget( "ui.controlgroup", {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Find instances of this widget inside controlgroup and init them
|
// Find instances of this widget inside controlgroup and init them
|
||||||
widgets = that.element.find( selector )[ widget ]( options );
|
that.element
|
||||||
|
.find( selector )[ widget ]( options )
|
||||||
widgets.each( function() {
|
.each( function() {
|
||||||
var element = $( this );
|
var element = $( this );
|
||||||
|
|
||||||
// Store an instance of the controlgroup to be able to reference
|
// Store an instance of the controlgroup to be able to reference
|
||||||
|
Loading…
Reference in New Issue
Block a user