From eaf2422be78c37e4b2220839dd2a7fdc6cd53c72 Mon Sep 17 00:00:00 2001 From: MajiD Fatemian Date: Mon, 8 Dec 2014 18:13:54 -0500 Subject: [PATCH] Removing the condition which would return status= as successful --- core-ajax.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-ajax.html b/core-ajax.html index c0ca0ad..ae8b741 100644 --- a/core-ajax.html +++ b/core-ajax.html @@ -236,7 +236,7 @@ isSuccess: function(xhr) { var status = xhr.status || 0; - return !status || (status >= 200 && status < 300); + return status >= 200 && status < 300; }, processResponse: function(xhr) {