aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-08-24 01:28:07 +0000
committerJohn Resig <jeresig@gmail.com>2007-08-24 01:28:07 +0000
commit257eaf7ee32df66ddd0a3333a5b6a829b9d388ef (patch)
treee83ca5be7d2fd12b5227659bddc8d477755fa132 /src/ajax
parent4df20c0c1b8506981087dd8702f3a076bd57d017 (diff)
downloadjquery-257eaf7ee32df66ddd0a3333a5b6a829b9d388ef.tar.gz
jquery-257eaf7ee32df66ddd0a3333a5b6a829b9d388ef.zip
Marked all the appropriate methods as being deprecated for the 1.1.4 release (in preparation for 1.2).
Diffstat (limited to 'src/ajax')
-rw-r--r--src/ajax/ajax.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js
index 0b2786a06..aa6275410 100644
--- a/src/ajax/ajax.js
+++ b/src/ajax/ajax.js
@@ -15,6 +15,7 @@ jQuery.fn.extend({
* @param Function callback (optional) A function to be executed whenever the data is loaded (parameters: responseText, status and response itself).
* @cat Ajax
*/
+ // DEPRECATED
loadIfModified: function( url, params, callback ) {
this.load( url, params, callback, 1 );
},
@@ -302,6 +303,7 @@ jQuery.extend({
* @param Function callback (optional) A function to be executed whenever the data is loaded successfully.
* @cat Ajax
*/
+ // DEPRECATED
getIfModified: function( url, data, callback, type ) {
return jQuery.get(url, data, callback, type, 1);
},
@@ -414,6 +416,7 @@ jQuery.extend({
* @param Number time How long before an AJAX request times out, in milliseconds.
* @cat Ajax
*/
+ // DEPRECATED
ajaxTimeout: function( timeout ) {
jQuery.ajaxSettings.timeout = timeout;
},