Modular integrations UI: Do not bounce for all the page

This commit is contained in:
manuroe
2017-09-15 14:57:40 +02:00
parent 0b65990695
commit 5a5b6e4319
@@ -23,7 +23,7 @@
NSString *const kIntegrationManagerMainScreen = nil;
NSString *const kIntegrationManagerAddIntegrationScreen = @"add_integ";
const NSString *kJavascriptSendResponseToModular = @"riotIOS.sendResponse('%@', %@);";
NSString *const kJavascriptSendResponseToModular = @"riotIOS.sendResponse('%@', %@);";
@interface IntegrationManagerViewController ()
@@ -67,6 +67,7 @@ const NSString *kJavascriptSendResponseToModular = @"riotIOS.sendResponse('%@',
[super viewDidLoad];
webView.scalesPageToFit = NO;
webView.scrollView.bounces = NO;
webView.delegate = self;
}