Skip to content

Commit 3a7f93e

Browse files
committed
Autocomplete: Use "https", not "http" in an example
1 parent 532dc79 commit 3a7f93e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entries/autocomplete.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
</desc>
8686
</type>
8787
<type name="String">
88-
<desc>When a string is used, the Autocomplete plugin expects that string to point to a URL resource that will return JSON data. It can be on the same host or on a different one (must support CORS). The Autocomplete plugin does not filter the results, instead a query string is added with a <code>term</code> field, which the server-side script should use for filtering the results. For example, if the <code>source</code> option is set to <code>"http://example.com"</code> and the user types <code>foo</code>, a GET request would be made to <code>http://example.com?term=foo</code>. The data itself can be in the same format as the local data described above.</desc>
88+
<desc>When a string is used, the Autocomplete plugin expects that string to point to a URL resource that will return JSON data. It can be on the same host or on a different one (must support CORS). The Autocomplete plugin does not filter the results, instead a query string is added with a <code>term</code> field, which the server-side script should use for filtering the results. For example, if the <code>source</code> option is set to <code>"https://example.com"</code> and the user types <code>foo</code>, a GET request would be made to <code>https://example.com?term=foo</code>. The data itself can be in the same format as the local data described above.</desc>
8989
</type>
9090
<type name="Function">
9191
<argument name="request" type="Object"/>

0 commit comments

Comments
 (0)