equal
deleted
inserted
replaced
49 |
49 |
50 // are we being prompted for login? |
50 // are we being prompted for login? |
51 var text = this.httpReq.responseText; |
51 var text = this.httpReq.responseText; |
52 if ( isLoginPrompt (text) ) { |
52 if ( isLoginPrompt (text) ) { |
53 var self = this; |
53 var self = this; |
54 login(function(){self.doFetchFeed();}); |
54 setTimeout(self.doFetchFeed(), 100); |
|
55 // login(function(){self.doFetchFeed();}); |
55 return; |
56 return; |
56 } |
57 } |
57 |
58 |
58 // handle the response and call the registered callback object |
59 // handle the response and call the registered callback object |
59 var response = this.httpReq.responseXML; |
60 var response = this.httpReq.responseXML; |