diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-24 10:21:25 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 02:41:16 -0800 |
commit | df08be870c88c312a2659660a174ba80a7bea57e (patch) | |
tree | 7c66c0aa403529d3e6ff5ba8137395220fbac828 /UICaboodle | |
parent | 8366df5e3dc184d578798c9e5635b11ab3f2e440 (diff) |
OMG, I forgot to commit this logic inversion.
Diffstat (limited to 'UICaboodle')
-rw-r--r-- | UICaboodle/BrowserView.mm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/UICaboodle/BrowserView.mm b/UICaboodle/BrowserView.mm index cb16f00..d145067 100644 --- a/UICaboodle/BrowserView.mm +++ b/UICaboodle/BrowserView.mm @@ -1010,6 +1010,8 @@ static void $UIWebViewWebViewDelegate$webViewClose$(UIWebViewWebViewDelegate *se - (id) initWithWidth:(float)width ofClass:(Class)_class { if ((self = [super init]) != nil) { + allowsNavigationAction_ = true; + class_ = _class; loading_ = [[NSMutableSet alloc] initWithCapacity:5]; |