Changed return type to undefined for certain functions, as discussed.
This commit is contained in:
parent
7b780def0d
commit
7d58c0f936
|
@ -322,7 +322,7 @@ jQuery.extend({
|
||||||
* });
|
* });
|
||||||
*
|
*
|
||||||
* @name $.get
|
* @name $.get
|
||||||
* @type jQuery
|
* @type undefined
|
||||||
* @param String url The URL of the page to load.
|
* @param String url The URL of the page to load.
|
||||||
* @param Hash params A set of key/value pairs that will be sent to the server.
|
* @param Hash params A set of key/value pairs that will be sent to the server.
|
||||||
* @param Function callback A function to be executed whenever the data is loaded.
|
* @param Function callback A function to be executed whenever the data is loaded.
|
||||||
|
@ -375,7 +375,7 @@ jQuery.extend({
|
||||||
* });
|
* });
|
||||||
*
|
*
|
||||||
* @name $.getIfModified
|
* @name $.getIfModified
|
||||||
* @type jQuery
|
* @type undefined
|
||||||
* @param String url The URL of the page to load.
|
* @param String url The URL of the page to load.
|
||||||
* @param Hash params A set of key/value pairs that will be sent to the server.
|
* @param Hash params A set of key/value pairs that will be sent to the server.
|
||||||
* @param Function callback A function to be executed whenever the data is loaded.
|
* @param Function callback A function to be executed whenever the data is loaded.
|
||||||
|
@ -406,7 +406,7 @@ jQuery.extend({
|
||||||
* ok( true, "Check with single argument, can't verify" );
|
* ok( true, "Check with single argument, can't verify" );
|
||||||
*
|
*
|
||||||
* @name $.getScript
|
* @name $.getScript
|
||||||
* @type jQuery
|
* @type undefined
|
||||||
* @param String url The URL of the page to load.
|
* @param String url The URL of the page to load.
|
||||||
* @param Function callback A function to be executed whenever the data is loaded.
|
* @param Function callback A function to be executed whenever the data is loaded.
|
||||||
* @cat AJAX
|
* @cat AJAX
|
||||||
|
@ -450,7 +450,7 @@ jQuery.extend({
|
||||||
* });
|
* });
|
||||||
*
|
*
|
||||||
* @name $.getJSON
|
* @name $.getJSON
|
||||||
* @type jQuery
|
* @type undefined
|
||||||
* @param String url The URL of the page to load.
|
* @param String url The URL of the page to load.
|
||||||
* @param Hash params A set of key/value pairs that will be sent to the server.
|
* @param Hash params A set of key/value pairs that will be sent to the server.
|
||||||
* @param Function callback A function to be executed whenever the data is loaded.
|
* @param Function callback A function to be executed whenever the data is loaded.
|
||||||
|
@ -493,7 +493,7 @@ jQuery.extend({
|
||||||
* });
|
* });
|
||||||
*
|
*
|
||||||
* @name $.post
|
* @name $.post
|
||||||
* @type jQuery
|
* @type undefined
|
||||||
* @param String url The URL of the page to load.
|
* @param String url The URL of the page to load.
|
||||||
* @param Hash params A set of key/value pairs that will be sent to the server.
|
* @param Hash params A set of key/value pairs that will be sent to the server.
|
||||||
* @param Function callback A function to be executed whenever the data is loaded.
|
* @param Function callback A function to be executed whenever the data is loaded.
|
||||||
|
@ -567,7 +567,7 @@ jQuery.extend({
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @name $.ajaxTimeout
|
* @name $.ajaxTimeout
|
||||||
* @type jQuery
|
* @type undefined
|
||||||
* @param Number time How long before an AJAX request times out.
|
* @param Number time How long before an AJAX request times out.
|
||||||
* @cat AJAX
|
* @cat AJAX
|
||||||
*/
|
*/
|
||||||
|
@ -684,7 +684,7 @@ jQuery.extend({
|
||||||
* });
|
* });
|
||||||
*
|
*
|
||||||
* @name $.ajax
|
* @name $.ajax
|
||||||
* @type jQuery
|
* @type undefined
|
||||||
* @param Hash prop A set of properties to initialize the request with.
|
* @param Hash prop A set of properties to initialize the request with.
|
||||||
* @cat AJAX
|
* @cat AJAX
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue