Which callbacks in particular are missing? There are some callbacks we don't touch because they can break the WebView. These can include anything that handles gestures (which when done wrong, can break touch events), and other view related callbacks. I'd highly recommend writing tests for the existing behaviour before adding the callbacks, since we've had very bad luck with this in the past w.r.t. the back button.
On Tue, Feb 4, 2014 at 11:20 AM, Naik, Archana <na...@lab126.com> wrote: > Hi, Devs > > There are 2 classes - CordovaWebViewClient and CordovaChromeClient in > amazon-fireos repo. They basically handle WebView callbacks. Recently, while > using Cordova internally for our projects we needed to handle few more > callbacks and noticed they were missing. I was wondering if there is any > reason why some callbacks were not handled? If not, I am cool. > I would like to add the ones we need for now so want to make sure I am not > missing anything. :) > > Also, one more thing, we would like to pass on these callbacks to plugins > incase they want to handle it. If no plugin wants handle it then callback > handling will fallback to the default cordova one. > > Please let me know your thoughts. > Thanks > Archana