Changed return type to undefined for certain functions, as discussed.

This commit is contained in:
Klaus Hartl 2006-11-04 21:09:05 +00:00
parent 7b780def0d
commit 7d58c0f936

View file

@ -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
*/