aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorTJ VanToll <tj.vantoll@gmail.com>2014-09-24 10:47:29 -0400
committerTJ VanToll <tj.vantoll@gmail.com>2014-10-25 10:10:38 -0700
commit4ac7b1f679de3df93f6a3681334ef0ecaf12bcb2 (patch)
treeff4b010c14af074ed3beea69d3e2230d1730d8a8 /demos
parentde2ef2a585447cf75fc8d4a734c12aa2bbd028c2 (diff)
downloadjquery-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.html2
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 );
};
});