Compare commits

...

1 Commits

Author SHA1 Message Date
Yuan Zhu ce3f17d45f Release 1.2.1 with Fix blank consent html review page. 2015-09-14 15:53:06 -07:00
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ResearchKit'
s.version = '1.2'
s.version = '1.2.1'
s.summary = 'ResearchKit is an open source software framework that makes it easy to create apps for medical research or for other research projects.'
s.homepage = 'https://www.github.com/ResearchKit/ResearchKit'
s.documentation_url = 'http://researchkit.github.io/docs/'
@@ -87,6 +87,8 @@
[self.view addSubview:_webView];
[self.view addSubview:_toolbar];
[self.view setNeedsUpdateConstraints];
}
- (void)updateLayoutMargins {
@@ -95,6 +97,7 @@
}
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator {
[super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
[self updateLayoutMargins];
}
@@ -133,10 +133,6 @@ typedef NS_ENUM(NSInteger, ORKConsentReviewPhase) {
[self stepDidChange];
}
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
}
- (UIBarButtonItem *)goToPreviousPageButtonItem {
UIBarButtonItem *button = [UIBarButtonItem ork_backBarButtonItemWithTarget:self action:@selector(goToPreviousPage)];
button.accessibilityLabel = ORKLocalizedString(@"AX_BUTTON_BACK", nil);