From 38c7b1ca814c59c48522cda6cfdf054c61773959 Mon Sep 17 00:00:00 2001 From: Corey Frang Date: Wed, 30 Jan 2013 08:30:35 -0600 Subject: Demos: Updating to use instance method on bridge --- demos/autocomplete/combobox.html | 2 +- demos/autocomplete/custom-data.html | 2 +- demos/autocomplete/multiple-remote.html | 2 +- demos/autocomplete/multiple.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'demos/autocomplete') diff --git a/demos/autocomplete/combobox.html b/demos/autocomplete/combobox.html index 5c74317e2..22f34aa17 100644 --- a/demos/autocomplete/combobox.html +++ b/demos/autocomplete/combobox.html @@ -154,7 +154,7 @@ this._delay(function() { this.input.tooltip( "close" ).attr( "title", "" ); }, 2500 ); - this.input.data( "ui-autocomplete" ).term = ""; + this.input.autocomplete( "instance" ).term = ""; }, _destroy: function() { diff --git a/demos/autocomplete/custom-data.html b/demos/autocomplete/custom-data.html index 4e518db4d..32e6a9ad3 100644 --- a/demos/autocomplete/custom-data.html +++ b/demos/autocomplete/custom-data.html @@ -66,7 +66,7 @@ return false; } }) - .data( "ui-autocomplete" )._renderItem = function( ul, item ) { + .autocomplete( "instance" )._renderItem = function( ul, item ) { return $( "
  • " ) .append( "" + item.label + "
    " + item.desc + "
    " ) .appendTo( ul ); diff --git a/demos/autocomplete/multiple-remote.html b/demos/autocomplete/multiple-remote.html index ed275628a..c97b3a904 100644 --- a/demos/autocomplete/multiple-remote.html +++ b/demos/autocomplete/multiple-remote.html @@ -29,7 +29,7 @@ // don't navigate away from the field on tab when selecting an item .bind( "keydown", function( event ) { if ( event.keyCode === $.ui.keyCode.TAB && - $( this ).data( "ui-autocomplete" ).menu.active ) { + $( this ).autocomplete( "instance" ).menu.active ) { event.preventDefault(); } }) diff --git a/demos/autocomplete/multiple.html b/demos/autocomplete/multiple.html index 68ae3d6a0..909432277 100644 --- a/demos/autocomplete/multiple.html +++ b/demos/autocomplete/multiple.html @@ -48,7 +48,7 @@ // don't navigate away from the field on tab when selecting an item .bind( "keydown", function( event ) { if ( event.keyCode === $.ui.keyCode.TAB && - $( this ).data( "ui-autocomplete" ).menu.active ) { + $( this ).autocomplete( "instance" ).menu.active ) { event.preventDefault(); } }) -- cgit v1.2.3