From: Jörn Zaefferer Date: Fri, 13 Oct 2006 14:02:29 +0000 (+0000) Subject: Fix for #265: Initialize defaults for global and timeout properly when $.ajax is... X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;ds=sidebyside;h=bfa8306633da9c2500e4f3e190c81a9827a8f95a;p=jquery.git Fix for #265: Initialize defaults for global and timeout properly when $.ajax is called internally (argument list instead of hash) --- diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index 5c48968..1b1e274 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -669,6 +669,8 @@ jQuery.extend({ ajax: function( type, url, data, ret, ifModified ) { // If only a single argument was passed in, // assume that it is a object of key/value pairs + var global = true; + var timeout = jQuery.timeout; if ( !url ) { ret = type.complete; var success = type.success;