diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-12-31 09:04:06 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:09:33 +0000 |
commit | 988f99ac50d99bc2c26c4b8f3c78cf4b62ff99f3 (patch) | |
tree | 96b4418c8ee766821c255b13ffff13f65702d45e /UICaboodle | |
parent | 59c6ae2287e52da7cf67e7bb8ae3fb53d07ab041 (diff) |
I think the future is now.
Diffstat (limited to 'UICaboodle')
-rw-r--r-- | UICaboodle/BrowserView.m | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/UICaboodle/BrowserView.m b/UICaboodle/BrowserView.m index 5cf07c8..1fd1422 100644 --- a/UICaboodle/BrowserView.m +++ b/UICaboodle/BrowserView.m @@ -293,9 +293,9 @@ } - (void) pushPage:(RVPage *)page { - [self setBackButtonTitle:title_]; [page setDelegate:delegate_]; [book_ pushPage:page]; + [self setBackButtonTitle:title_]; } - (BOOL) getSpecial:(NSURL *)url { @@ -787,6 +787,8 @@ - (void) webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame { if ([frame parentFrame] != nil) return; + if (reloading_) + return; [self _finishLoading]; [self loadURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@?%@", |