Fixed JSON/JSONP examples (#1765)

This corrects my previous mistake where I forgot to adjust the example of JSON after changing the implementation of JSONP.
This commit is contained in:
Michael Schmidt 2019-02-27 14:54:06 +01:00 committed by GitHub
parent b5041cf9ea
commit ae4842db84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -14,6 +14,3 @@
"error": null,
"status": "Ok"
}</code></pre>
<h2>JSONP</h2>
<pre><code>callback({ "data": null });</code></pre>

View File

@ -0,0 +1,2 @@
<h2>Callbacks</h2>
<pre><code>callback({ "data": null });</code></pre>