Skip to content

Commit

Permalink
Update src/ios/ChildBrowserCommand.m
Browse files Browse the repository at this point in the history
a little bug fixed@ line:43 from childBrowser to self.childBrowser
  • Loading branch information
horstleung committed Jan 24, 2013
1 parent ddf5a1c commit 4d5840d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ios/ChildBrowserCommand.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ - (void) showWebPage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)o

NSLog(@"showLocationBar %d",(int)[[options objectForKey:@"showLocationBar"] boolValue]);

[self.viewController presentModalViewController:childBrowser animated:YES];
[self.viewController presentModalViewController:self.childBrowser animated:YES];

// objectAtIndex 0 is the callback id
NSString *url = (NSString*) [arguments objectAtIndex:1];
Expand Down

0 comments on commit 4d5840d

Please sign in to comment.