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 setTimeout(self.doFetchFeed(), 100); |
54 // setTimeout(self.doFetchFeed(), 100); |
55 // login(function(){self.doFetchFeed();}); |
55 login(function(){self.doFetchFeed();}); |
56 return; |
56 return; |
57 } |
57 } |
58 |
58 |
59 // handle the response and call the registered callback object |
59 // handle the response and call the registered callback object |
60 var response = this.httpReq.responseXML; |
60 var response = this.httpReq.responseXML; |