Fixed all warnings generated when javascript.options.strict is enabled in Firefox about:config.

This commit is contained in:
John Resig 2006-10-15 02:57:55 +00:00
parent e7669f64d8
commit af961d58c2
3 changed files with 10 additions and 7 deletions

View file

@ -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;