Skip to content

Commit 32ffc61

Browse files
committed
jQuery.post: change order of signatures
Closes gh-726 Fixes gh-725
1 parent 1af8d45 commit 32ffc61

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

entries/jQuery.post.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
<?xml version="1.0"?>
22
<entry type="method" name="jQuery.post" return="jqXHR">
33
<title>jQuery.post()</title>
4-
<signature>
5-
<added>3.0</added>
6-
<argument name="settings" type="PlainObject" optional="false">
7-
<desc>A set of key/value pairs that configure the Ajax request. All properties except for <code>url</code> are optional. A default can be set for any option with <a href="/jQuery.ajaxSetup/">$.ajaxSetup()</a>. See <a href="/jquery.ajax/#jQuery-ajax-settings">jQuery.ajax( settings )</a> for a complete list of all settings. Type will automatically be set to <code>POST</code>.</desc>
8-
</argument>
9-
</signature>
104
<signature>
115
<added>1.0</added>
126
<argument name="url" type="String">
@@ -27,6 +21,12 @@
2721
<desc>The type of data expected from the server. Default: Intelligent Guess (xml, json, script, text, html).</desc>
2822
</argument>
2923
</signature>
24+
<signature>
25+
<added>3.0</added>
26+
<argument name="settings" type="PlainObject" optional="false">
27+
<desc>A set of key/value pairs that configure the Ajax request. All properties except for <code>url</code> are optional. A default can be set for any option with <a href="/jQuery.ajaxSetup/">$.ajaxSetup()</a>. See <a href="/jquery.ajax/#jQuery-ajax-settings">jQuery.ajax( settings )</a> for a complete list of all settings. Type will automatically be set to <code>POST</code>.</desc>
28+
</argument>
29+
</signature>
3030
<desc>Load data from the server using a HTTP POST request.</desc>
3131
<longdesc>
3232
<p>This is a shorthand Ajax function, which is equivalent to:</p>

0 commit comments

Comments
 (0)