mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-15 20:01:03 +00:00
Fixed variable name on button changes
This commit is contained in:
parent
61f3c3341f
commit
e83fea8ddc
1 changed files with 2 additions and 2 deletions
|
|
@ -57,13 +57,13 @@ $.fn.buttonMarkup = function( options ){
|
|||
el
|
||||
.attr( 'data-theme', o.theme )
|
||||
.addClass( buttonClass )
|
||||
.wrapInner( $( '<' + wrapperEls + '>', { className: "ui-btn-text" } ) );
|
||||
.wrapInner( $( '<' + o.wrapperEls + '>', { className: "ui-btn-text" } ) );
|
||||
|
||||
if (o.icon) {
|
||||
el.prepend( $( '<span>', { className: iconClass } ) );
|
||||
}
|
||||
|
||||
el.wrapInner( $('<' + wrapperEls + '>', { className: innerClass }) );
|
||||
el.wrapInner( $('<' + o.wrapperEls + '>', { className: innerClass }) );
|
||||
|
||||
el.clickable();
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue