diff options
author | Scott González <scott.gonzalez@gmail.com> | 2017-05-08 11:52:58 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2017-05-17 11:17:17 -0400 |
commit | 809f29efa79c3c9aba95e6d7ffef41f567cda3a5 (patch) | |
tree | 30ebdfab5e40395b2017c1c8c55dfcef6be20bd5 /demos/autocomplete | |
parent | 0940cb9bd2b8967c8eac15f3097933f5aee7e551 (diff) | |
download | jquery-ui-809f29efa79c3c9aba95e6d7ffef41f567cda3a5.tar.gz jquery-ui-809f29efa79c3c9aba95e6d7ffef41f567cda3a5.zip |
All: Remove uses of `jQuery.proxy()`
Ref #15160
Closes gh-1813
Diffstat (limited to 'demos/autocomplete')
-rw-r--r-- | demos/autocomplete/combobox.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/autocomplete/combobox.html b/demos/autocomplete/combobox.html index 403c48550..32c69b97a 100644 --- a/demos/autocomplete/combobox.html +++ b/demos/autocomplete/combobox.html @@ -48,7 +48,7 @@ .autocomplete({ delay: 0, minLength: 0, - source: $.proxy( this, "_source" ) + source: this._source.bind( this ) }) .tooltip({ classes: { |