diff options
author | TJ VanToll <tj.vantoll@gmail.com> | 2014-09-24 10:47:29 -0400 |
---|---|---|
committer | TJ VanToll <tj.vantoll@gmail.com> | 2014-10-25 10:10:38 -0700 |
commit | 4ac7b1f679de3df93f6a3681334ef0ecaf12bcb2 (patch) | |
tree | ff4b010c14af074ed3beea69d3e2230d1730d8a8 /demos | |
parent | de2ef2a585447cf75fc8d4a734c12aa2bbd028c2 (diff) | |
download | jquery-ui-4ac7b1f679de3df93f6a3681334ef0ecaf12bcb2.tar.gz jquery-ui-4ac7b1f679de3df93f6a3681334ef0ecaf12bcb2.zip |
Autocomplete: Re-add wrappers to menu items
Diffstat (limited to 'demos')
-rw-r--r-- | demos/autocomplete/custom-data.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/autocomplete/custom-data.html b/demos/autocomplete/custom-data.html index c243775a3..1c94a877a 100644 --- a/demos/autocomplete/custom-data.html +++ b/demos/autocomplete/custom-data.html @@ -68,7 +68,7 @@ }) .autocomplete( "instance" )._renderItem = function( ul, item ) { return $( "<li>" ) - .append( "<a>" + item.label + "<br>" + item.desc + "</a>" ) + .append( "<div>" + item.label + "<br>" + item.desc + "</div>" ) .appendTo( ul ); }; }); |