Use undefined instead of 0 to deference transport for clarity.

This commit is contained in:
jaubourg 2011-01-19 17:24:56 +01:00
parent d343bfe528
commit 7947cd77e4

View file

@ -345,7 +345,7 @@ jQuery.extend({
// Dereference transport for early garbage collection
// (no matter how long the jXHR transport will be used
transport = 0;
transport = undefined;
// Set readyState
jXHR.readyState = status ? 4 : 0;