I know scrollView supports isBounceEnabled to enable/disable the bouncing effect when you reach the end of the scroll.
Can Corona API support the same feature for webView?
It’s really needed since some webapps break by scrolling past the end of “fixed” objects in the webview.
iOS 5.x+ supports it already with this simple command:
webView.scrollView.bounces = NO;
Sounds like a quick, few minutes of work for a daily build.
This would help a lot, thank you!