Don't insert label element until this feature is fully implemented.

This commit is contained in:
superbland 2018-10-31 15:37:57 +00:00
parent be382a47b6
commit 3049a81c94

View File

@ -70,11 +70,11 @@ $.ButtonGroup = function( options ) {
// TODO What if there IS an options.group specified?
if( !options.group ){
this.label = $.makeNeutralElement( "label" );
this.element.style.display = "inline-block";
//this.label = $.makeNeutralElement( "label" );
//TODO: support labels for ButtonGroups
//this.label.innerHTML = this.labelText;
this.element.style.display = "inline-block";
this.element.appendChild( this.label );
//this.element.appendChild( this.label );
for ( i = 0; i < buttons.length; i++ ) {
this.element.appendChild( buttons[ i ].element );
}