Skip to content

Commit 6cbd40b

Browse files
committed
Merge pull request fnagel#319 from wuSam/patch-1
fixed: remove blank causing a jqmigrate warning
2 parents 81cd67f + 5034d5e commit 6cbd40b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.ui.selectmenu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ $.widget("ui.selectmenu", {
393393
}
394394
}
395395
} else {
396-
$(' <li role="presentation"><a href="#nogo" tabindex="-1" role="option"></a></li>' ).appendTo( this.list );
396+
$('<li role="presentation"><a href="#nogo" tabindex="-1" role="option"></a></li>' ).appendTo( this.list );
397397
}
398398
// we need to set and unset the CSS classes for dropdown and popup style
399399
var isDropDown = ( o.style == 'dropdown' );

0 commit comments

Comments
 (0)