mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
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
|
||||
* @type jQuery
|
||||
* @type undefined
|
||||
* @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 Function callback A function to be executed whenever the data is loaded.
|
||||
@ -375,7 +375,7 @@ jQuery.extend({
|
||||
* });
|
||||
*
|
||||
* @name $.getIfModified
|
||||
* @type jQuery
|
||||
* @type undefined
|
||||
* @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 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" );
|
||||
*
|
||||
* @name $.getScript
|
||||
* @type jQuery
|
||||
* @type undefined
|
||||
* @param String url The URL of the page to load.
|
||||
* @param Function callback A function to be executed whenever the data is loaded.
|
||||
* @cat AJAX
|
||||
@ -450,7 +450,7 @@ jQuery.extend({
|
||||
* });
|
||||
*
|
||||
* @name $.getJSON
|
||||
* @type jQuery
|
||||
* @type undefined
|
||||
* @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 Function callback A function to be executed whenever the data is loaded.
|
||||
@ -493,7 +493,7 @@ jQuery.extend({
|
||||
* });
|
||||
*
|
||||
* @name $.post
|
||||
* @type jQuery
|
||||
* @type undefined
|
||||
* @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 Function callback A function to be executed whenever the data is loaded.
|
||||
@ -567,7 +567,7 @@ jQuery.extend({
|
||||
*
|
||||
*
|
||||
* @name $.ajaxTimeout
|
||||
* @type jQuery
|
||||
* @type undefined
|
||||
* @param Number time How long before an AJAX request times out.
|
||||
* @cat AJAX
|
||||
*/
|
||||
@ -684,7 +684,7 @@ jQuery.extend({
|
||||
* });
|
||||
*
|
||||
* @name $.ajax
|
||||
* @type jQuery
|
||||
* @type undefined
|
||||
* @param Hash prop A set of properties to initialize the request with.
|
||||
* @cat AJAX
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user