aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2006-10-15 02:57:55 +0000
committerJohn Resig <jeresig@gmail.com>2006-10-15 02:57:55 +0000
commitaf961d58c244224c14f3bb519214485cb670c64d (patch)
tree97ffd95f965f1bf7ebe50ba6491c7a724ac1d558 /src/ajax
parente7669f64d88612884df27c5744558191f8e6c8b1 (diff)
downloadjquery-af961d58c244224c14f3bb519214485cb670c64d.tar.gz
jquery-af961d58c244224c14f3bb519214485cb670c64d.zip
Fixed all warnings generated when javascript.options.strict is enabled in Firefox about:config.
Diffstat (limited to 'src/ajax')
-rw-r--r--src/ajax/ajax.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js
index 4ade2e846..13ad01d40 100644
--- a/src/ajax/ajax.js
+++ b/src/ajax/ajax.js
@@ -688,7 +688,7 @@ jQuery.extend({
var dataType = type.dataType;
var global = typeof type.global == "boolean" ? type.global : true;
var timeout = typeof type.timeout == "number" ? type.timeout : jQuery.timeout;
- var ifModified = type.ifModified || false;
+ ifModified = type.ifModified || false;
data = type.data;
url = type.url;
type = type.type;