diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-14 02:01:21 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-14 05:09:10 -0700 |
commit | ceed86247fa68805ac51e5fa12b7155126c3e2ca (patch) | |
tree | 3178ed2750e91df5bb6033b7f0aecf05f471c877 /CyteKit | |
parent | ace9d463aa1b8e68f84e83aca0dbd288a996a728 (diff) |
Allow window.close() to close unselected controllers.
Diffstat (limited to 'CyteKit')
-rw-r--r-- | CyteKit/WebViewController.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CyteKit/WebViewController.mm b/CyteKit/WebViewController.mm index 2d9cfe1..4b2116f 100644 --- a/CyteKit/WebViewController.mm +++ b/CyteKit/WebViewController.mm @@ -581,7 +581,7 @@ float CYScrollViewDecelerationRateNormal; // }}} - (void) close { - [[self navigationController] dismissModalViewControllerAnimated:YES]; + [[[self navigationController] parentViewController] dismissModalViewControllerAnimated:YES]; } - (void) alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)button { |