diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-10-25 06:47:19 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-10-25 06:47:19 -0400 |
commit | 9202bb7df57b159003f6a0659cbe9359fdeb8196 (patch) | |
tree | 56fae5ac0b5add19399ae2ec7146649493e49f71 /demos/autocomplete/custom-data.html | |
parent | 2582bfab46613da613f1a3354bc733b68a110b95 (diff) | |
download | jquery-ui-9202bb7df57b159003f6a0659cbe9359fdeb8196.tar.gz jquery-ui-9202bb7df57b159003f6a0659cbe9359fdeb8196.zip |
Autocomplete: Removed data fallback for item.autocomplete. Fixes #8156 - Autocomplete: Remove data fallbacks.
Diffstat (limited to 'demos/autocomplete/custom-data.html')
-rw-r--r-- | demos/autocomplete/custom-data.html | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/demos/autocomplete/custom-data.html b/demos/autocomplete/custom-data.html index 1e64df047..df191b899 100644 --- a/demos/autocomplete/custom-data.html +++ b/demos/autocomplete/custom-data.html @@ -68,7 +68,6 @@ }) .data( "autocomplete" )._renderItem = function( ul, item ) { return $( "<li>" ) - .data( "item.autocomplete", item ) .append( "<a>" + item.label + "<br>" + item.desc + "</a>" ) .appendTo( ul ); }; |