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.
2 parents 569d401 + f90d720 commit 7dd8c08Copy full SHA for 7dd8c08
ui/jquery.ui.selectmenu.js
@@ -32,7 +32,8 @@ $.widget("ui.selectmenu", {
32
format: null,
33
escapeHtml: false,
34
bgImage: function() {},
35
- wrapperElement: "<div />"
+ wrapperElement: "<span />",
36
+ listWrapperElement: "<div />"
37
},
38
39
_create: function() {
@@ -202,7 +203,7 @@ $.widget("ui.selectmenu", {
202
203
'aria-labelledby': this.ids[1],
204
'id': this.ids[2]
205
});
- this.listWrap = $( o.wrapperElement )
206
+ this.listWrap = $( o.listWrapperElement )
207
.addClass( self.widgetBaseClass + '-menu' )
208
.append( this.list )
209
.appendTo( 'body' );
0 commit comments