Threaded View
-
15 Oct 2011 7:34 AM #1
request undefined on line 27638 of sencha-touch-debug-w-comments.js
request undefined on line 27638 of sencha-touch-debug-w-comments.js
If you look at this, it's clear that request would have to be referencing a global variable. it should be changed to "r".
abort : function(r) {
if (r && this.isLoading(r)) {
if (!request.timedout) {
request.aborted = true;
}
// Will fire an onreadystatechange event
r.xhr.abort();
}
else if (!r) {
var id;
for(id in this.requests) {
if (!this.requests.hasOwnProperty(id)) {
continue;
}
this.abort(this.requests[id]);
}
}
},
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote