From f20cd5429adac5d99f69c2de51d04b2d5f421799 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 24 Jan 2013 18:12:26 -0500 Subject: [PATCH] Autocomplete demo: Fixed reference to widget instance. --- demos/autocomplete/custom-data.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/autocomplete/custom-data.html b/demos/autocomplete/custom-data.html index 327af4c13..aab331add 100644 --- a/demos/autocomplete/custom-data.html +++ b/demos/autocomplete/custom-data.html @@ -66,7 +66,7 @@ return false; } }) - .data( "autocomplete" )._renderItem = function( ul, item ) { + .data( "ui-autocomplete" )._renderItem = function( ul, item ) { return $( "
  • " ) .append( "" + item.label + "
    " + item.desc + "
    " ) .appendTo( ul ); -- 2.39.5