diff options
-rw-r--r-- | demos/autocomplete/combobox.html | 2 | ||||
-rw-r--r-- | demos/autocomplete/custom-data.html | 2 | ||||
-rw-r--r-- | demos/autocomplete/multiple-remote.html | 2 | ||||
-rw-r--r-- | demos/autocomplete/multiple.html | 2 | ||||
-rw-r--r-- | demos/spinner/default.html | 2 |
5 files changed, 5 insertions, 5 deletions
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 $( "<li>" ) .append( "<a>" + item.label + "<br>" + item.desc + "</a>" ) .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(); } }) diff --git a/demos/spinner/default.html b/demos/spinner/default.html index 5093e8666..3d3288807 100644 --- a/demos/spinner/default.html +++ b/demos/spinner/default.html @@ -23,7 +23,7 @@ } }); $( "#destroy" ).click(function() { - if ( spinner.data( "ui-spinner" ) ) { + if ( spinner.spinner( "instance" ) ) { spinner.spinner( "destroy" ); } else { spinner.spinner(); |