mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-25 00:28:20 -05:00
Merge pull request #247 from yueyuzhao/dev-fix-ios-whole-window-scroll
iOS: disable UIWebView scroll to fix #243
This commit is contained in:
commit
3c80bb2f81
2 changed files with 7 additions and 0 deletions
|
@ -145,6 +145,8 @@ Assets chooser
|
|||
margin: ${css_vh(0.00)};
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
height: ${css_vh(88.28)};
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
*.scrollarea{
|
||||
|
|
|
@ -28,6 +28,11 @@ JSContext *js;
|
|||
[super viewDidLoad];
|
||||
[self registerDefaultsFromSettingsBundle];
|
||||
webview = (UIWebView*)[self view] ;
|
||||
|
||||
// disable webview scroll
|
||||
// to fix https://github.com/LLK/scratchjr/issues/243
|
||||
webview.scrollView.scrollEnabled = false;
|
||||
|
||||
[webview setDelegate:self];
|
||||
[Database open:@"ScratchJr"];
|
||||
[ScratchJr cameraInit];
|
||||
|
|
Loading…
Reference in a new issue