fixed double wrap from local variables

This commit is contained in:
John Bender 2011-07-29 13:36:41 -07:00
parent 30c2e6c6a4
commit 6e343c20cb

View file

@ -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" ),