We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b914da6 commit f90d720Copy full SHA for f90d720
ui/jquery.ui.selectmenu.js
@@ -31,7 +31,8 @@ $.widget("ui.selectmenu", {
31
icons: null,
32
format: null,
33
bgImage: function() {},
34
- wrapperElement: "<div />"
+ wrapperElement: "<span />",
35
+ listWrapperElement: "<div />"
36
},
37
38
_create: function() {
@@ -186,7 +187,7 @@ $.widget("ui.selectmenu", {
186
187
'aria-labelledby': this.ids[0],
188
'id': this.ids[1]
189
});
- this.listWrap = $( o.wrapperElement )
190
+ this.listWrap = $( o.listWrapperElement )
191
.addClass( self.widgetBaseClass + '-menu' )
192
.append( this.list )
193
.appendTo( 'body' );
0 commit comments