index: this.element.parent().children().index( this.element )
};
this.originalTitle = this.element.attr( "title" );
- this.options.title = this.options.title || this.originalTitle;
+ if ( this.options.title == null && this.originalTitle != null ) {
+ this.options.title = this.originalTitle;
+ }
this._createWrapper();
},
_title: function( title ) {
- if ( !this.options.title ) {
+ if ( this.options.title ) {
+ title.text( this.options.title );
+ } else {
title.html( " " );
}
- title.text( this.options.title );
},
_createButtonPane: function() {