mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-12 16:43:10 +00:00
fixed double wrap from local variables
This commit is contained in:
parent
30c2e6c6a4
commit
6e343c20cb
1 changed files with 2 additions and 2 deletions
|
|
@ -276,10 +276,10 @@ $.widget( "mobile.selectmenu", $.mobile.widget, {
|
|||
|
||||
o = this.options,
|
||||
|
||||
select = this.element.wrap( "<div class='ui-select'>" ),
|
||||
|
||||
menu = self.options.nativeMenu ? this._native(this.element) : this._custom(),
|
||||
|
||||
select = menu.select,
|
||||
|
||||
selectID = select.attr( "id" ),
|
||||
|
||||
label = $( "label[for='"+ selectID +"']" ).addClass( "ui-select" ),
|
||||
|
|
|
|||
Loading…
Reference in a new issue