Controlgroup: Rename excludeInvisible to onlyVisible

Gets rid of the double negative.
This commit is contained in:
Jörn Zaefferer 2015-09-30 15:38:42 +02:00 committed by Alexander Schmitz
parent 42daa77f90
commit 6fc2cb3c7c
4 changed files with 11 additions and 11 deletions

View File

@ -17,7 +17,7 @@ common.testWidget( "controlgroup", {
"controlgroupLabel": ".ui-controlgroup-label"
},
direction: "horizontal",
excludeInvisible: true,
onlyVisible: true,
classes: {},
// Callbacks

View File

@ -83,7 +83,7 @@ $.each( tests, function( widget, html ) {
}
// Hide each element and check the corner classes
function iterateHidden( excludeInvisible ) {
function iterateHidden( onlyVisible ) {
for ( i = 0; i < 4; i++ ) {
$( controls ).each( showElements );
@ -91,7 +91,7 @@ $.each( tests, function( widget, html ) {
controls[ i ][ widget ]( "widget" ).hide();
currentClasses = classes.slice( 0 );
if ( excludeInvisible ) {
if ( onlyVisible ) {
if ( i === 0 ) {
currentClasses[ i + 1 ] = classes[ i ];
currentClasses[ i ] = false;
@ -128,7 +128,7 @@ $.each( tests, function( widget, html ) {
iterateHidden( true );
// Set the exclude option to false so we no longer care about hidden
element.controlgroup( "option", "excludeInvisible", false );
element.controlgroup( "option", "onlyVisible", false );
// Iterate hiding the elements again and check their corner classes
iterateHidden();

View File

@ -73,21 +73,21 @@ test( "items: custom widget", function() {
"Custom widget called" );
} );
test( "excludeInvisible", function( assert ) {
test( "onlyVisible", function( assert ) {
expect( 4 );
var element = $( ".controlgroup" ).controlgroup( {
excludeInvisible: false
onlyVisible: false
} ),
buttons = element.children( ".ui-button" );
assert.lacksClassStart( buttons.eq( 1 ), "ui-corner" );
assert.hasClasses( buttons.eq( 0 ), "ui-corner-left",
"ExcludeInvisible: false: First button hidden second button doesn't get a corner class" );
"onlyVisible: false: First button hidden second button doesn't get a corner class" );
element.controlgroup( "option", "excludeInvisible", true );
element.controlgroup( "option", "onlyVisible", true );
assert.lacksClassStart( buttons.eq( 0 ), "ui-corner" );
assert.hasClasses( buttons.eq( 1 ), "ui-corner-left",
"ExcludeInvisible: true: First button is hidden second button get corner class" );
"onlyVisible: true: First button is hidden second button get corner class" );
} );
test( "direction", function( assert ) {

View File

@ -36,7 +36,7 @@ return $.widget( "ui.controlgroup", {
options: {
direction: "horizontal",
disabled: null,
excludeInvisible: true,
onlyVisible: true,
items: {
"button": "input[type=button], input[type=submit], input[type=reset], button, a",
"controlgroupLabel": ".ui-controlgroup-label",
@ -209,7 +209,7 @@ return $.widget( "ui.controlgroup", {
children = this.childWidgets;
// We filter here because we need to track all childWidgets not just the visible ones
if ( this.options.excludeInvisible ) {
if ( this.options.onlyVisible ) {
children = children.filter( ":visible" );
}